This repository was archived by the owner on Mar 9, 2026. It is now read-only.
Update extra_module_updater.py #255
This file contains hidden or 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 Commit Date | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| update-commit-date: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Update date in update.json | |
| run: | | |
| echo "$(date -u +'%Y-%m-%d %H:%M UTC')" > update.json | |
| - name: Commit and push if changed | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: 'github-actions[bot]: Updated file update.json' | |
| file_pattern: 'update.json' |