-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alreadyss
committed
Oct 7, 2024
1 parent
a50133b
commit 547ad2d
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
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 > LoaderX | ||
- 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]="Loader" | ||
arr[1]="Loader" | ||
arr[2]="Loader" | ||
arr[3]="Loader" | ||
arr[4]="Loader" | ||
arr[5]="Loader" | ||
arr[6]="Loader" | ||
arr[7]="Loader" | ||
arr[8]="Loader" | ||
arr[9]="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 }} |