We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46cb663 commit 2570bd7Copy full SHA for 2570bd7
1 file changed
.github/workflows/docs.yml
@@ -1,23 +1,23 @@
1
-name: Build ReSpec HTML page
+name: Generate respecter HTML
2
3
on:
4
- push:
5
- branches:
6
- - main
7
- pull_request:
+ workflow_run:
+ workflows: ["Build ontology assets"]
+ types:
+ - completed
8
9
jobs:
10
- build-respec:
+ generate-docs:
11
runs-on: ubuntu-latest
12
-
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
13
steps:
14
- name: Checkout ontology repository
15
uses: actions/checkout@v4
16
17
- name: Set up Python
18
uses: actions/setup-python@v4
19
with:
20
- python-version: '3.11' # or whichever you prefer
+ python-version: '3.12'
21
22
- name: Install respecter
23
run: |
0 commit comments