[剪定対象合作]削除実行 (毎月4日 09:00) #4
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: "[剪定対象合作]削除実行 (毎月4日 09:00)" | |
| on: | |
| schedule: | |
| - cron: "0 0 4 * *" # 毎月4日 09:00 JST | |
| workflow_dispatch: # 手動実行用 | |
| jobs: | |
| exec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Run exec script | |
| env: | |
| WIKIDOT_USERNAME: ${{ secrets.WIKIDOT_USERNAME }} | |
| WIKIDOT_PASSWORD: ${{ secrets.WIKIDOT_PASSWORD }} | |
| DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
| run: uv run scripts/collab_deletion/exec.py |