We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18b3226 commit 2b95636Copy full SHA for 2b95636
.github/workflows/actions.yml
@@ -1,16 +1,16 @@
1
name: run main.py
2
3
on:
4
+ workflow_dispatch: # This event allows manual triggering
5
schedule:
- - cron: '0 */4 * * *' # At 00:00 on Monday
6
+ - cron: '0 */4 * * *' # At every 4th hour
7
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
-
12
- name: checkout repo content
13
- uses: actions/checkout@v2 # checkout the repository content to github runner
+ uses: actions/checkout@v2 # checkout the repository content to GitHub runner
14
15
- name: setup python
16
uses: actions/setup-python@v4
0 commit comments