Skip to content

Commit 4b1400e

Browse files
feat: add workflow for automatic updating (#28)
1 parent d733c7d commit 4b1400e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/update.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on:
2+
push:
3+
paths: update.mjs
4+
jobs:
5+
update:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- run: npm run update
10+
- uses: stefanzweifel/git-auto-commit-action@v4
11+
with:
12+
commit_message: 'chore: update'
13+
file_pattern: README.md

0 commit comments

Comments
 (0)