Skip to content

Commit 29514ae

Browse files
committed
chore: add dependabot settings
1 parent ea619a9 commit 29514ae

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: auto-merge
2+
3+
on:
4+
pull_request:
5+
6+
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

Comments
 (0)