From c1b832923e5920d787753b40de3216e719f0d6be Mon Sep 17 00:00:00 2001 From: Jacobus Geluk Date: Mon, 27 Oct 2025 16:44:02 +0000 Subject: [PATCH 1/3] fix(shapes): use dprod:* for DataService protocol/securitySchemaType (fixes #141) --- ontology/dprod/dprod-shapes.ttl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ontology/dprod/dprod-shapes.ttl b/ontology/dprod/dprod-shapes.ttl index fe50f71..4957595 100644 --- a/ontology/dprod/dprod-shapes.ttl +++ b/ontology/dprod/dprod-shapes.ttl @@ -362,7 +362,7 @@ dprod-shapes:DataService-protocol a sh:PropertyShape; rdfs:isDefinedBy dprod-shapes:; sh:path dprod:protocol; - sh:class dcat:Protocol; + sh:class dprod:Protocol; dct:description "A protocol (possibly one of many options) used to communicate with this data service."@en ; rdfs:label "data service protocol shape" ; . @@ -371,7 +371,7 @@ dprod-shapes:DataService-securitySchemaType a sh:PropertyShape; rdfs:isDefinedBy dprod-shapes:; sh:path dprod:securitySchemaType; - sh:class dcat:SecuritySchemaType; + sh:class dprod:SecuritySchemaType; dct:description "The security schema type used for authentication and communication with this Data Service."@en ; rdfs:label "data service security schema type shape" ; . From 042b1a66882586d887e780d26326ca798edf7336 Mon Sep 17 00:00:00 2001 From: Jacobus Geluk Date: Mon, 27 Oct 2025 16:44:14 +0000 Subject: [PATCH 2/3] fix(ontology): use rdfs:label on dprod:securitySchemaType (fixes #139) --- ontology/dprod/dprod-ontology.ttl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ontology/dprod/dprod-ontology.ttl b/ontology/dprod/dprod-ontology.ttl index 1db2f38..acf9a95 100644 --- a/ontology/dprod/dprod-ontology.ttl +++ b/ontology/dprod/dprod-ontology.ttl @@ -221,5 +221,5 @@ dprod:securitySchemaType rdfs:isDefinedBy dprod: ; rdfs:domain dcat:DataService ; # rdfs:range rdf:resource ; # better let user decide whether they want SecuritySchemaType class or own class or skos - rdf:label "security schema type" ; + rdfs:label "security schema type" ; . From d541f08bb9fb66809445d0be69a11f096ad54094 Mon Sep 17 00:00:00 2001 From: Jacobus Geluk Date: Fri, 16 Jan 2026 01:06:28 +0000 Subject: [PATCH 3/3] ci: add dependabot auto-merge and auto-approve workflows Co-Authored-By: Claude Opus 4.5 --- .github/workflows/dependabot-approve.yml | 18 ++++++++++++++++++ .github/workflows/dependabot-automerge.yml | 19 +++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 .github/workflows/dependabot-approve.yml create mode 100644 .github/workflows/dependabot-automerge.yml diff --git a/.github/workflows/dependabot-approve.yml b/.github/workflows/dependabot-approve.yml new file mode 100644 index 0000000..d7b43db --- /dev/null +++ b/.github/workflows/dependabot-approve.yml @@ -0,0 +1,18 @@ +name: Auto-approve Dependabot + +on: pull_request_target + +permissions: + pull-requests: write + +jobs: + approve: + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' + steps: + - name: Approve Dependabot PR + run: gh pr review --approve "$PR_URL" + env: + PR_URL: ${{ github.event.pull_request.html_url }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml new file mode 100644 index 0000000..27c4e13 --- /dev/null +++ b/.github/workflows/dependabot-automerge.yml @@ -0,0 +1,19 @@ +name: Dependabot auto-merge + +on: pull_request + +permissions: + contents: write + pull-requests: write + +jobs: + automerge: + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' + steps: + - name: Enable auto-merge for Dependabot PRs + run: gh pr merge --auto --rebase "$PR_URL" + env: + PR_URL: ${{ github.event.pull_request.html_url }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} +