Skip to content

Commit 15b19a2

Browse files
committed
chore: 🤖 auto-merge
1 parent 3e7e756 commit 15b19a2

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/auto-merge.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: auto-merge
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
auto-merge:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v2
12+
13+
- name: Set up Node.js
14+
uses: actions/setup-node@v2
15+
with:
16+
node-version: 18
17+
18+
- name: Install dependencies
19+
run: yarn install
20+
21+
- name: Test
22+
run: yarn test
23+
24+
- name: Build package
25+
run: yarn build
26+
27+
- uses: ahmadnassri/action-dependabot-auto-merge@v2
28+
with:
29+
target: minor
30+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)