Skip to content

Commit 710fab5

Browse files
Update repo
Change module type slme for imports of PMD logistics application ontology.
1 parent 6f37a8b commit 710fab5

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/automake.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,15 @@ on:
66
- main
77
workflow_dispatch:
88

9-
# Wir committen/pushen -> braucht Schreibrechte
109
permissions:
1110
contents: write
1211

1312
jobs:
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:
@@ -27,7 +25,7 @@ jobs:
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
@@ -95,8 +93,7 @@ jobs:
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

src/ontology/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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
# ----------------------------------------

src/sparql/class-count-by-prefix.sparql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}
1111
GROUP BY ?prefix

0 commit comments

Comments
 (0)