Update jiekouAD.txt #1425
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 Rules | |
on: | |
push: | |
workflow_dispatch: | |
env: | |
GITHUBTOKEN: ${{ secrets.GITHUBTOKEN }} | |
jobs: | |
Pushed: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Make Rules and Git push assets to github | |
run: | | |
bash ./make.sh | |
git init | |
git config --local user.name "action" | |
git config --local user.email "[email protected]" | |
git branch -m main | |
git add --all | |
git commit -m "Updated at $(TZ=UTC-8 date +'%Y-%m-%d %H:%M:%S')(北京时间)" | |
git push --force -u origin | |
- name: Manual-Update AdRules Repository | |
run: | | |
bash ./manual-update.sh |