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 cf6fd9e commit 09e7b40Copy full SHA for 09e7b40
.github/workflows/danger.yml
@@ -0,0 +1,16 @@
1
+name: danger
2
+
3
+on:
4
+ pull_request
5
6
+jobs:
7
+ danger:
8
+ runs-on: macos-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Setup Bundler
12
+ run: scripts/setup_bundler.sh
13
+ - name: Danger
14
+ env:
15
+ DANGER_GITHUB_API_TOKEN: ${{ secrets.DangerGitHubAPIToken }}
16
+ run: '[ ! -z $DANGER_GITHUB_API_TOKEN ] && bundle exec danger || echo "Skipping Danger for External Contributor"'
.travis.yml
@@ -11,9 +11,6 @@ cache:
stages:
- test
-before_script:
- - '[ ! -z $DANGER_GITHUB_API_TOKEN ] && bundle exec danger || echo "Skipping Danger for External Contributor"'
-
17
jobs:
18
include:
19
# The order of builds matters (even though they are run in parallel):
0 commit comments