We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a2716f + 52d3e06 commit a91139bCopy full SHA for a91139b
.github/dependabot.yml
@@ -5,4 +5,3 @@ updates:
5
open-pull-requests-limit: 1000
6
schedule:
7
interval: "daily"
8
- target-branch: "development"
.github/workflows/auto-merge-dependabot.yaml
@@ -0,0 +1,23 @@
1
+name: "auto-merge-dependabot"
2
+on:
3
+ pull_request:
4
+jobs:
+ auto-merge:
+ if: github.actor == 'dependabot[bot]'
+ runs-on: ubuntu-latest
+ steps:
9
+ - name: Checkout repository
10
+ uses: actions/checkout@v3
11
+ - name: Setup node
12
+ uses: actions/setup-node@v3
13
+ with:
14
+ node-version: "lts/*"
15
+ - name: Install dependencies
16
+ run: yarn --ignore-engines
17
+ - name: Run test
18
+ run: yarn run test
19
+ - name: Auto-merge action
20
+ uses: ahmadnassri/action-dependabot-auto-merge@v2
21
22
+ target: minor
23
+ github-token: ${{ secrets.token }}
0 commit comments