Daily summary to Discord #116
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: Daily summary to Discord | |
| on: | |
| schedule: | |
| - cron: '47 1 * * *' # 03:47 EET (UTC+2) every day including weekends | |
| workflow_dispatch: | |
| jobs: | |
| post-summary: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Post to Discord | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_PAT }} | |
| DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| run: python3 scripts/discord_summary.py |