Skip to content

Commit 5fb1d03

Browse files
committed
🐛 Fix Danger
Signed-off-by: Peter Boling <[email protected]>
1 parent 18849af commit 5fb1d03

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/danger.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: What's up Danger?
22

33
on:
44
pull_request:
@@ -9,12 +9,17 @@ jobs:
99
danger:
1010
runs-on: ubuntu-latest
1111
if: github.event_name == 'pull_request' # if only run pull request when multiple trigger workflow
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
ruby:
16+
- 2.6
1217
steps:
1318
- uses: actions/checkout@v2
1419
- name: Setup Ruby & Bundle
1520
uses: ruby/setup-ruby@v1
1621
with:
17-
ruby-version: '2.6'
22+
ruby-version: ${{ matrix.ruby }}
1823
bundler-cache: true
1924
- uses: MeilCli/danger-action@v5
2025
with:

.github/workflows/style.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,3 @@ jobs:
3434
bundler-cache: true
3535
- name: Run Rubocop
3636
run: bundle exec rubocop -DESP
37-
- name: Danger
38-
uses: danger/danger
39-
with:
40-
secrets: ${{ secrets.DANGER_GITHUB_API_TOKEN }}

0 commit comments

Comments
 (0)