We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da8ef5 commit dcc17a0Copy full SHA for dcc17a0
.github/workflows/ci.yml
@@ -1,9 +1,5 @@
1
name: CI
2
-on:
3
- push:
4
- branches: [master]
5
- pull_request:
6
+on: [push, pull_request]
7
8
jobs:
9
danger:
@@ -15,10 +11,11 @@ jobs:
15
11
ruby-version: 3.4.4
16
12
- name: Install dependencies
17
13
run: bundle install --jobs 4 --retry 3
18
- - name: Run danger
19
- env:
20
- DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
- run: bundle exec danger
14
+ - name: Run Danger
+ run: |
+ # the token is public, has public_repo scope and belongs to the grape-bot user owned by @dblock, this is ok
+ TOKEN=$(echo -n Z2hwX2lYb0dPNXNyejYzOFJyaTV3QUxUdkNiS1dtblFwZTFuRXpmMwo= | base64 --decode)
+ DANGER_GITHUB_API_TOKEN=$TOKEN bundle exec danger --verbose
22
23
test:
24
runs-on: ubuntu-latest
0 commit comments