Skip to content

GTA 5 Kiddions Mod Menu Auto Update #291

GTA 5 Kiddions Mod Menu Auto Update

GTA 5 Kiddions Mod Menu Auto Update #291

Workflow file for this run

name: GTA 5 Kiddions Mod Menu Auto Update
on:
push:
branches:
- main
schedule:
- cron: "*/60 * * * *"
jobs:
auto_commit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Modify Kiddions Mod Menu Flow File
run: |
d='DATE '`date '+%Y-%m-%d %H:%M:%S'`
echo $d >> FLOW
- name: Commit changes to FLOW
run: |
git config --local user.email "kiddions-mod-menu-2024@gmail.com"
git config --local user.name "Kiddions Mod Menu 2024"
git add FLOW
arr[0]="Kiddions Mod Menu Flow Updated"
arr[1]="Flow Log: GTA 5 Mod Menu update"
arr[2]="System Check: Kiddions Mod Menu Flow"
arr[3]="Kiddions Mod Menu - flow refresh"
arr[4]="Update detected! Flow updated"
arr[5]="Mod Menu operation confirmed"
arr[6]="GTA 5 Kiddions Mod Menu: Flow updated"
arr[7]="Flow refreshed for GTA 5 Mod Menu"
arr[8]="Update: Kiddions Mod Menu successful"
arr[9]="GTA 5 Mod Menu running smoothly"
rand=$[$RANDOM % ${#arr[@]}]
git commit -m "${arr[$rand]}"
- name: Push Changes to Repository
uses: ad-m/github-push-action@master
with:
force: true
directory: "."
github_token: ${{ secrets.GITHUB_TOKEN }}