-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (48 loc) · 1.54 KB
/
autocommit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Auto commit
on:
schedule:
# - cron: "* 19 * * *" # See https://crontab.guru/#0_7,9,11_*_*_1,3
- cron: "26 5,8 * * *"
workflow_dispatch:
push:
branches:
- main
jobs:
auto_commit:
permissions:
contents: write
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: DEBUG
run: echo "::debug::Ref = ${{github.ref}}"
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Modify last update
run: |
d=`date '+%Y-%m-%dT%H:%M:%SZ'`
echo $d > LAST_UPDATED
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "WinJayX"
git add -A
arr[0]="chore(bot): 😂 auto commit"
arr[1]="chore(bot): 😱 auto commit"
arr[2]="chore(bot): 👿 auto commit"
arr[3]="chore(bot): 💩 auto commit"
arr[4]="chore(bot): 🙏 auto commit"
arr[5]="chore(bot): 🙈 auto commit"
arr[6]="chore(bot): 🐐 auto commit"
arr[7]="chore(bot): 🤖 auto commit"
arr[8]="chore(bot): 🟩 auto commit"
arr[9]="chore(bot): 👻 auto commit"
rand=$[$RANDOM % ${#arr[@]}]
git commit -m "${arr[$rand]}"
- name: GitHub Push
uses: ad-m/[email protected]
with:
directory: "."
github_token: ${{ secrets.GITHUB_TOKEN }}