Skip to content

Commit 114621e

Browse files
committed
Automatically check for new version and open PR
1 parent ace084e commit 114621e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/check.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
on:
3+
schedule:
4+
- cron: "34 5 * * *"
5+
name: Check for new version
6+
jobs:
7+
version_check:
8+
permissions:
9+
contents: write
10+
11+
name: "Update"
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- run: python3 update-version.py
18+
- name: Create Pull Request
19+
uses: peter-evans/create-pull-request@v7
20+

0 commit comments

Comments
 (0)