Thanks to visit codestin.com Credit goes to github.com
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 d28c873 commit 72a1279Copy full SHA for 72a1279
.github/workflows/check-for-resources-update.yml
@@ -1,8 +1,13 @@
1
name: Check for utils resources update
2
on:
3
+ workflow_dispatch: null
4
schedule:
5
- cron: 0 0 * * 0 # At 00:00 on Sunday, see https://crontab.guru/#0_0_*_*_0
6
7
+permissions:
8
+ contents: write
9
+ pull-requests: write
10
+
11
jobs:
12
check-for-resources-update:
13
runs-on: ubuntu-latest
@@ -17,7 +22,9 @@ jobs:
17
22
run: npm install
18
23
- name: Update
19
24
run: npm run update-resources
20
- - name: Check changes
21
- run: |
- git add --all && \
- git diff-index --cached HEAD --stat --exit-code
25
+ - uses: peter-evans/create-pull-request@v7
26
+ with:
27
+ commit-message: Updates resources with latest
28
+ branch: update-unicode-alias
29
+ branch-suffix: timestamp
30
+ title: Updates resources with latest
0 commit comments