Skip to content

Commit

Permalink
🐛 Fix Danger
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Boling <peter.boling@gmail.com>
  • Loading branch information
pboling committed Nov 10, 2021
1 parent 18849af commit 5fb1d03
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/danger.yml
@@ -1,4 +1,4 @@
name: CI
name: What's up Danger?

on:
pull_request:
Expand All @@ -9,12 +9,17 @@ jobs:
danger:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' # if only run pull request when multiple trigger workflow
strategy:
fail-fast: false
matrix:
ruby:
- 2.6
steps:
- uses: actions/checkout@v2
- name: Setup Ruby & Bundle
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6'
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: MeilCli/danger-action@v5
with:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/style.yml
Expand Up @@ -34,7 +34,3 @@ jobs:
bundler-cache: true
- name: Run Rubocop
run: bundle exec rubocop -DESP
- name: Danger
uses: danger/danger
with:
secrets: ${{ secrets.DANGER_GITHUB_API_TOKEN }}

0 comments on commit 5fb1d03

Please sign in to comment.