Skip to content

Auto commit

Auto commit #3949

Workflow file for this run

name: Auto commit
on:
push:
branches:
- master
schedule:
- cron: "0 7,9,11 * * 1,3" # See https://crontab.guru/#0_7,9,11_*_*_1,3
jobs:
auto_commit:
runs-on: ubuntu-latest
steps:
- name: DEBUG
run: echo "::debug::Ref = ${{github.ref}}"
- 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 "mazipanneh@gmail.com"
git config --local user.name "mazipan"
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:
directory: "."
github_token: ${{ secrets.GITHUB_TOKEN }}