Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/dependabot-approve.yml
Original file line number Diff line number Diff line change
@@ -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 }}

19 changes: 19 additions & 0 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
@@ -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 }}

2 changes: 1 addition & 1 deletion ontology/dprod/dprod-ontology.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -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" ;
.
4 changes: 2 additions & 2 deletions ontology/dprod/dprod-shapes.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -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" ;
.
Expand All @@ -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" ;
.
Expand Down
Loading