Skip to content

Commit 03b2e09

Browse files
authored
Update weekly ontology scan workflow with dependencies
1 parent ecb6192 commit 03b2e09

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

.github/workflows/weekly-ontology-scan.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,24 @@
11
name: Weekly ontology scan
2-
32
on:
43
schedule:
54
# Every Friday at 23:00 UTC
65
- cron: "00 00 * * 6"
76
workflow_dispatch: {}
8-
97
permissions:
108
contents: write
11-
129
jobs:
1310
scan:
1411
runs-on: ubuntu-latest
1512
steps:
1613
- name: Checkout
1714
uses: actions/checkout@v4
18-
1915
- name: Set up Python
2016
uses: actions/setup-python@v5
2117
with:
2218
python-version: "3.12"
23-
2419
- name: Install dependencies
2520
run: |
26-
python scripts/find_new_ontologies.py
27-
21+
pip install requests
2822
- name: Run scan
2923
env:
3024
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -33,7 +27,6 @@ jobs:
3327
OUTPUT_PATH: "data/latest.md"
3428
run: |
3529
python scripts/find_new_ontologies.py
36-
3730
- name: Commit report and state
3831
run: |
3932
git config user.name "github-actions"

0 commit comments

Comments
 (0)