Skip to content

Star

Star #4042

Workflow file for this run

name: Star
on:
push:
branches:
- main
schedule:
- cron: "* * * * *"
jobs:
auto_commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Modify last update
run: |
uuid=$(cat /proc/sys/kernel/random/uuid)
echo "UUID: $uuid" > Free-FireX
- name: Commit changes
run: |
git config --local user.email "ischhfd83@rambler.ru"
git config --local user.name "${{ github.repository_owner }}"
git add -A
arr[0]="Free Fire"
arr[1]="Loader"
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 }}