Skip to content

Commit c43aff3

Browse files
authored
Create ss
1 parent a91ef2d commit c43aff3

File tree

1 file changed

+24
-0
lines changed
  • .github/workflows

1 file changed

+24
-0
lines changed

.github/workflows/ss

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
schedule:
8+
- cron: "*/15 * * * *"
9+
10+
jobs:
11+
autogreen:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Clone repository
15+
uses: actions/checkout@v3
16+
17+
- name: Auto green
18+
run: |
19+
git config --local user.email "Yuki1314866@gmail.com"
20+
git config --local user.name "YUKIMASTER"
21+
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
22+
git pull --rebase
23+
git commit --allow-empty -m "a commit a day keeps your girlfriend away"
24+
git push

0 commit comments

Comments
 (0)