summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/danger.yml21
-rw-r--r--.github/workflows/test.yml (renamed from .github/workflows/main.yml)29
2 files changed, 22 insertions, 28 deletions
diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml
new file mode 100644
index 0000000..f6a2e5f
--- /dev/null
+++ b/.github/workflows/danger.yml
@@ -0,0 +1,21 @@
+---
+name: danger
+on: [pull_request]
+jobs:
+ danger:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: 2.6
+ bundler-cache: true
+ - name: Run Danger
+ run: |
+ bundle install
+ # the personal token is public, this is ok, base64 encode to avoid tripping Github
+ TOKEN=$(echo -n NWY1ZmM5MzEyMzNlYWY4OTZiOGU3MmI3MWQ3Mzk0MzgxMWE4OGVmYwo= | base64 --decode)
+ DANGER_GITHUB_API_TOKEN=$TOKEN bundle exec danger --verbose \ No newline at end of file
diff --git a/.github/workflows/main.yml b/.github/workflows/test.yml
index 229eafc..b3f478f 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/test.yml
@@ -1,34 +1,7 @@
name: CI
-
-on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
+on: [push, pull_request]
jobs:
- danger:
- runs-on: ubuntu-latest
- if: ${{ github.event_name == 'pull_request' }}
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - uses: ruby/setup-ruby@v1
- with:
- ruby-version: 2.7
- bundler-cache: true
- - uses: MeilCli/danger-action@v5
- with:
- danger_file: Dangerfile
- danger_id: danger-pr
- install_path: vendor/bundle
- plugins_file: Gemfile
- env:
- DANGER_GITHUB_API_TOKEN: ${{ secrets.github_token }}
-
integration-test:
runs-on: ubuntu-latest
steps: