From dcdc54b31fe74e4376a6866a11276d0f61fdd97a Mon Sep 17 00:00:00 2001 From: Austin Wright <1952159+austinwright@users.noreply.github.com> Date: Mon, 6 Apr 2020 15:16:48 -0400 Subject: [PATCH] Change token & add development branch to danger Add `- development` to list of branches (for now). Change GITHUB_TOKEN to MESSAGEKIT_DANGER_GITHUB_API_TOKEN (MessageKit-Bot) --- .github/workflows/danger.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml index 9bdec801..d7305f18 100644 --- a/.github/workflows/danger.yml +++ b/.github/workflows/danger.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - master + - development jobs: danger: @@ -24,4 +25,4 @@ jobs: - name: Run build script run: gem install bundler && bundle install && bundle exec danger --fail-on-errors=true env: - DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} + DANGER_GITHUB_API_TOKEN: ${{ secrets.MESSAGEKIT_DANGER_GITHUB_API_TOKEN }}