Weekly Activity Update #2
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: Weekly Activity Update | |
| on: | |
| schedule: | |
| - cron: "0 3 * * 1" # Every Monday (UTC) | |
| workflow_dispatch: | |
| jobs: | |
| update-activity: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Update activity log | |
| run: | | |
| echo "# Project Activity Log" > ACTIVITY.md | |
| echo "" >> ACTIVITY.md | |
| echo "This project is actively maintained." >> ACTIVITY.md | |
| echo "" >> ACTIVITY.md | |
| echo "Last updated: $(date -u)" >> ACTIVITY.md | |
| - name: Commit changes | |
| run: | | |
| git config --global user.name "github-actions" | |
| git config --global user.email "github-actions@github.com" | |
| git add ACTIVITY.md | |
| git commit -m "chore: weekly maintenance update" || echo "No changes to commit" | |
| git push |