File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed
Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 66 - main
77 workflow_dispatch :
88
9- # Wir committen/pushen -> braucht Schreibrechte
109permissions :
1110 contents : write
1211
1312jobs :
1413 make :
15- # Verhindert Endlos-Loop: Wenn CI als Bot etwas pusht, soll MAKE NICHT nochmal laufen
1614 if : github.actor != 'github-actions[bot]'
1715 runs-on : ubuntu-latest
1816
19- # Zentral definieren, damit du nur hier den Tag anpassen musst
17+
2018 container : obolibrary/odkfull:v1.6
2119
2220 env :
2725 - name : Checkout
2826 uses : actions/checkout@v4
2927 with :
30- fetch-depth : 0 # nötig für git diff über zwei SHAs
28+ fetch-depth : 0
3129
3230 - name : Decide whether odk.py update is needed
3331 id : odkcheck
9593 with :
9694 message : " ODK build: refresh imports + artifacts"
9795 default_author : github_actions
98- # explizit nur relevante Pfade, damit tmp/reports nicht aus Versehen reinkommen
99- # (auch wenn sie oft per .gitignore ausgeschlossen sind)
96+
10097 add : >-
10198 src/ontology/Makefile
10299 src/ontology/*.Makefile
Original file line number Diff line number Diff line change 1010# More information: https://github.com/INCATools/ontology-development-kit/
1111
1212# Fingerprint of the configuration file when this Makefile was last generated
13- CONFIG_HASH = 662b6dcc2fbe8b77afb018582186c7fe891484c5780780209310cd3b87855a74
13+ CONFIG_HASH = 199d83c62d9d874351f6d60eb56ff942e6a46ff5008e2131e724cb85058f2f84
1414
1515
1616# ----------------------------------------
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ SELECT ?prefix (COUNT(DISTINCT ?cls) AS ?numberOfClasses) WHERE
66{
77 ?cls a owl:Class .
88 FILTER (!isBlank(?cls ))
9- BIND( STRBEFORE (STRAFTER (str(?cls ),"https://w3id.org/wcso"), " _" ) AS ?prefix )
9+ BIND( STRBEFORE (STRAFTER (str(?cls ),"https://w3id.org/wcso/ "), " _" ) AS ?prefix )
1010}
1111GROUP BY ?prefix
You can’t perform that action at this time.
0 commit comments