Generate daily briefing page #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: Generate daily briefing page | |
| on: | |
| schedule: | |
| - cron: '0 7 * * 1-5' # 09:00 EET Mon–Fri | |
| workflow_dispatch: | |
| jobs: | |
| generate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate and push briefing | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_PAT }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| run: python3 scripts/generate_briefing.py |