Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dcat' into dcat
Browse files Browse the repository at this point in the history
  • Loading branch information
mih committed Feb 13, 2024
2 parents daacd0c + d41c325 commit f768643
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git,.codespellrc
check-hidden = true
# ignore-regex =
# ignore-words-list =
23 changes: 23 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Codespell configuration is within .codespellrc
---
name: Codespell

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2
2 changes: 1 addition & 1 deletion src/linkml/data-access-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ classes:
initialize the remote.
range: string
multivalued: true
# the next two must not be used, unless range is a class defintion
# the next two must not be used, unless range is a class definition
# and not just a type
#inlined: true
#inlined_as_list: true
4 changes: 2 additions & 2 deletions src/linkml/datasets.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id: https://concepts.datalad.org/datasets
name: datasets
title: Concepts for describing dataset
title: Concepts for describing datasets
description: >
Provided components are modeled after the DCAT v3 vocabulary
(https://www.w3.org/TR/vocab-dcat-3). Within the DataLad concepts ontology
Expand Down Expand Up @@ -242,7 +242,7 @@ classes:
slots:
- endpoint_url
# although we do not expect any data service to have a unique identifier
# we must add this slow here, rather than in derived classes, due to
# we must add this slot here, rather than in derived classes, due to
# a potential linkml limitation/bug
# https://github.com/psychoinformatics-de/datalad-concepts/issues/30
- meta_id
1 change: 1 addition & 0 deletions src/linkml/git-provenance-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ classes:
- GitTracked
slot_usage:
gitsha:
pattern: "^[0-9a-f]{40}$"
description: >-
SHA1 identifier of the commit object.
Expand Down

0 comments on commit f768643

Please sign in to comment.