Update Fancyss Rules 3.0 #362
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 Fancyss Rules 3.0 | |
on: | |
push: | |
branches: ['3.0'] | |
paths: | |
- '.github/workflows/fancyss-rules-3.0.yml' | |
- 'fancyss_rules/auto_update/*' | |
workflow_dispatch: | |
inputs: | |
FORCE_PUSH: | |
description: 'Force to push' | |
required: true | |
default: 'false' | |
schedule: | |
- cron: '45 19 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run update script | |
run: | | |
sudo apt-get install moreutils | |
cd fancyss_rules/auto_update | |
chmod +x fwlist.py | |
bash update_rules.sh | |
- name: Commit to repo | |
if: env.is_changed == '1' || github.event.inputs.FORCE_PUSH == 'true' | |
run: | | |
cd $GITHUB_WORKSPACE | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add fancyss_rules/. | |
git commit -m "Actions Auto Update at $(date +'%Y-%m-%d %H:%M:%S')" | |
git push | |
- name: Delete old workflow runs | |
uses: GitRML/delete-workflow-runs@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository: ${{ github.repository }} | |
keep_minimum_runs: 7 | |
retain_days: 7 |