Skip to content

Commit 84041b1

Browse files
authored
update
1 parent 0b5033c commit 84041b1

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/cron.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: cron
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 0 * * 0'
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Use Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: '16'
19+
- name: run
20+
run: |
21+
npm run clone
22+
npm run rename
23+
npm run cleanup
24+
git status
25+
- name: Open PR
26+
uses: peter-evans/create-pull-request@v4
27+
with:
28+
title: Automatic Update

0 commit comments

Comments
 (0)