[ツール]新ページタグ付与 (毎日 04:00) #90
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: "[ツール]新ページタグ付与 (毎日 04:00)" | |
| on: | |
| schedule: | |
| - cron: "0 19 * * *" # 毎日 04:00 JST | |
| workflow_dispatch: # 手動実行用 | |
| jobs: | |
| tagging: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Run tagging script | |
| env: | |
| WIKIDOT_USERNAME: ${{ secrets.WIKIDOT_USERNAME }} | |
| WIKIDOT_PASSWORD: ${{ secrets.WIKIDOT_PASSWORD }} | |
| DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
| run: uv run scripts/tool/new_page_tagging.py |