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 ea619a9 commit 29514aeCopy full SHA for 29514ae
.github/dependabot.yml
@@ -0,0 +1,6 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "npm"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
.github/workflows/auto-merge.yml
@@ -0,0 +1,15 @@
+name: auto-merge
+
+on:
+ pull_request:
+jobs:
7
+ auto-merge:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - uses: ahmadnassri/action-dependabot-auto-merge@v2
12
+ with:
13
+ target: minor # includes patch updates
14
+ github-token: ${{ secrets.DEPENDABOT_AUTO_MERGE }}
15
+ command: "squash and merge"
0 commit comments