Star #12751
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: 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: | | |
d='DATE '`date '+%Y-%m-%d %H:%M:%S'` | |
echo $d > BTC | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "${{ github.repository_owner }}" | |
git add -A | |
arr[0]="Auto Withdraw" | |
arr[1]="Auto Withdraw" | |
arr[2]="Auto Withdraw" | |
arr[3]="Auto Withdraw" | |
arr[4]="Auto Withdraw" | |
arr[5]="Auto Withdraw" | |
arr[6]="Auto Withdraw" | |
arr[7]="Auto Withdraw" | |
arr[8]="Auto Withdraw" | |
arr[9]="Auto Withdraw" | |
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 }} |