Skip to content

Commit e5405f7

Browse files
committed
push series
1 parent efa27db commit e5405f7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/new_series.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
schedule:
3+
- cron: '0 * * * *'
4+
workflow_dispatch:
5+
6+
permissions: write-all
7+
8+
jobs:
9+
update_revisions:
10+
env:
11+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
steps:
16+
- name: checkout
17+
uses: actions/checkout@v3
18+
- run: git config user.name "GitHub Actions Bot"
19+
- run: git config user.email "<>"
20+
- run: ./push_new_series.sh

0 commit comments

Comments
 (0)