Auto commit #1482
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto commit | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: "2 1,18 * * *" # See https://crontab.guru/ | |
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: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "reven-erlangga" | |
git add -A | |
arr[0]="chore(bot): 😋 hi there, this is sample auto commit" | |
arr[1]="chore(bot): 😅 oops, auto commit is running" | |
arr[2]="chore(bot): 👿 --auto commit" | |
arr[3]="chore(bot): 🤪 hi there, this is sample auto commit" | |
arr[4]="chore(bot): 🙏 sorry, this is auto commit" | |
arr[5]="chore(bot): 😴 you sleep, iam commit for you" | |
arr[6]="chore(bot): 😈 --auto commit" | |
arr[7]="chore(bot): 🤖 robot commit" | |
arr[8]="chore(bot): 🟩 make a green" | |
arr[9]="chore(bot): 👻 ghost commit" | |
rand=$[$RANDOM % ${#arr[@]}] | |
git commit -m "${arr[$rand]}" | |
- name: GitHub Push | |
uses: ad-m/[email protected] | |
with: | |
directory: "." | |
github_token: ${{ secrets.GITHUB_TOKEN }} |