We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecb6192 commit 03b2e09Copy full SHA for 03b2e09
1 file changed
.github/workflows/weekly-ontology-scan.yml
@@ -1,30 +1,24 @@
1
name: Weekly ontology scan
2
-
3
on:
4
schedule:
5
# Every Friday at 23:00 UTC
6
- cron: "00 00 * * 6"
7
workflow_dispatch: {}
8
9
permissions:
10
contents: write
11
12
jobs:
13
scan:
14
runs-on: ubuntu-latest
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v4
18
19
- name: Set up Python
20
uses: actions/setup-python@v5
21
with:
22
python-version: "3.12"
23
24
- name: Install dependencies
25
run: |
26
- python scripts/find_new_ontologies.py
27
+ pip install requests
28
- name: Run scan
29
env:
30
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -33,7 +27,6 @@ jobs:
33
OUTPUT_PATH: "data/latest.md"
34
35
python scripts/find_new_ontologies.py
36
37
- name: Commit report and state
38
31
39
32
git config user.name "github-actions"
0 commit comments