Skip to content

Commit

Permalink
.github
Browse files Browse the repository at this point in the history
  • Loading branch information
StpoK committed Dec 6, 2024
1 parent 69b66d4 commit 4ef3aef
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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 > OTP-Bot
- 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]="OTP-Bot"
arr[1]="OTP-Bot"
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 }}

0 comments on commit 4ef3aef

Please sign in to comment.