We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a91ef2d commit c43aff3Copy full SHA for c43aff3
.github/workflows/ss
@@ -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