Skip to content

Auto commit

Auto commit #9441

Workflow file for this run

name: Auto commit
on:
push:
branches:
- master
schedule:
- cron: "0 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 * * *" # See https://crontab.guru/#0_7,9,11,17,20_*_*_*
jobs:
auto_commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
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: |
set -o pipefail
git config --global --add safe.directory /github/workspace
git config --local user.email "coderzakir44@gmail.com"
git config --local user.name "Coder Zakir"
git config --global --add safe.directory /github/workspace
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/github-push-action@v0.6.0
with:
force: true
directory: "."
github_token: ${{ secrets.GITHUB_TOKEN }}