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.
2 parents eb9fa00 + dec9a1d commit 9d479d1Copy full SHA for 9d479d1
2 files changed
.github/workflows/auto-merge.yml
@@ -0,0 +1,17 @@
1
+name: auto-merge
2
+
3
+on:
4
+ pull_request_target:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ auto-merge:
10
+ runs-on: ubuntu-latest
11
+ if: github.actor == 'dependabot[bot]'
12
+ steps:
13
+ - uses: ahmadnassri/action-dependabot-auto-merge@v2.4
14
+ with:
15
+ github-token: ${{ secrets.AUTOMERGE_TOKEN }}
16
+ command: 'squash and merge'
17
+ target: minor
.github/workflows/test.yml
@@ -0,0 +1,22 @@
+name: Tests
+ push:
+ pull_request:
+ build:
+ - uses: actions/checkout@v2
+ - name: Setup Node.js
18
+ uses: actions/setup-node@v2
19
20
+ node-version: '14'
21
+ - run: yarn
22
+ - run: yarn jest
0 commit comments