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 ede68a4 commit c2bc3ffCopy full SHA for c2bc3ff
.github/workflows/crawl.yml
@@ -6,12 +6,13 @@ on:
6
- main
7
schedule:
8
- cron: '0 * * * *'
9
+ workflow_dispatch:
10
11
jobs:
12
crawl_and_commit:
13
runs-on: ubuntu-latest
14
permissions:
- contents: write # Grant write permissions for committing files
15
+ contents: write
16
steps:
17
- name: Checkout repository
18
uses: actions/checkout@v4
@@ -30,7 +31,7 @@ jobs:
30
31
id: crawl_step
32
run: |
33
python crawl.py
- continue-on-error: true # Allows the workflow to continue even if the script returns a non-zero exit code
34
+ continue-on-error: true
35
36
- name: Commit crawled files if there are changes
37
if: success()
0 commit comments