Update #5
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: Update | |
on: | |
schedule: | |
- cron: '0 * * * *' # 每小时执行一次 | |
workflow_dispatch: # 支持手动触发 | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
repository: Kdwkakcs/pwcd | |
token: ${{ secrets.privates }} | |
path: pwcd | |
- name: Make script executable | |
run: | | |
cd pwcd | |
chmod +x run_bblot.sh | |
bash run_bblot.sh | |
- name: Run script | |
run: ./run_bblot.sh | |
- name: Commit and push changes | |
run: | | |
git config --local user.name "GitHub Actions" | |
git config --local user.email "actions@github.com" | |
git add . | |
git commit -m "Update at $(date +'%Y-%m-%d %H:%M:%S')" | |
git push origin main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # 设置环境变量 |