-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (42 loc) · 1.3 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
name: Auto commit
on:
push:
branches:
- master
schedule:
- cron: "0 2,4,7,8,9 * * *"
jobs:
auto_commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
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: Trust my dir
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Commit changes
run: |
git config --local user.email "bangdompret@gmail.com"
git config --local user.name "domathid"
git add -A
arr[0]="feat: 😂 auto commit"
arr[1]="feat: 😱 auto commit"
arr[2]="feat: 👿 auto commit"
arr[3]="feat: 💩 auto commit"
arr[4]="feat: 🙏 auto commit"
arr[5]="feat: 🙈 auto commit"
arr[6]="feat: 🐐 auto commit"
arr[7]="feat: 🚀 auto commit"
rand=$[$RANDOM % ${#arr[@]}]
git commit -m "${arr[$rand]}"
- name: GitHub Push
uses: ad-m/github-push-action@master
with:
force: true
directory: "."
github_token: ${{ secrets.GITHUB_TOKEN }}