We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d7f3850 + 3f1976e commit c0ca20eCopy full SHA for c0ca20e
.github/workflows/actions.yml
@@ -2,7 +2,7 @@ name: run main.py
2
3
on:
4
schedule:
5
- - cron: '0 0 * * 1' # At 00:00 on Monday
+ - cron: '0 3 * * 1'
6
7
jobs:
8
build:
@@ -26,6 +26,12 @@ jobs:
26
poetry install
27
28
- name: execute py script
29
+ env:
30
+ NOTION_API_KEY: ${{ secrets.NOTION_API_KEY }}
31
+ NOTION_DB_ID: ${{ secrets.NOTION_DB_ID }}
32
+ TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }}
33
+ TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
34
+ OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
35
run: |
36
poetry run python src/scripts/run_workflow.py
37
continue-on-error: true # Optional: continue to the next step even if this step fails
0 commit comments