ReleaseUpdate #351
This file contains hidden or 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: ReleaseUpdate | |
| on: | |
| push: | |
| branches: | |
| - master | |
| 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 > UPDATE | |
| - 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]="Updated features" | |
| arr[1]="updated connectivity" | |
| arr[2]="stablised" | |
| arr[3]="fixed crash" | |
| arr[4]="fixed gui" | |
| arr[5]="added features" | |
| arr[6]="fixed internal issue" | |
| arr[7]="updated agent" | |
| arr[8]="updated README" | |
| arr[9]="Bugfix" | |
| 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 }} |