From 6264be4116a48b9cc76dea98dc51f7478c45027a Mon Sep 17 00:00:00 2001 From: fdiblen <144492+fdiblen@users.noreply.github.com> Date: Mon, 23 Mar 2026 16:47:19 +0100 Subject: [PATCH 1/2] add CITATION.cff --- CITATION.cff | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..9bbc5f1 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,28 @@ +# This CITATION.cff file was generated with cffinit. +# Visit https://bit.ly/cffinit to generate yours today! + +cff-version: 1.2.0 +title: Research Software Quality indicators +message: >- + If you use this software, please cite it using the + metadata from this file. +type: software +authors: + - name: >- + European Virtual Institute for Research Software + Excellence + email: contact@everse.software + website: 'https://everse.software/' + alias: EVERSE +identifiers: + - type: url + value: 'https://everse.software/indicators/website/indicators.html' +repository-code: 'https://github.com/EVERSE-ResearchSoftware/indicators' +keywords: + - Research Software + - Software Quality + - EVERSE + - EOSC + - Research Software Quality Indicators + - Research Software Quality Dimensions + \ No newline at end of file From b22ddaccecd6f073ca98518dc69b0a90ef84497c Mon Sep 17 00:00:00 2001 From: fdiblen <144492+fdiblen@users.noreply.github.com> Date: Mon, 23 Mar 2026 16:48:30 +0100 Subject: [PATCH 2/2] add CITATION.cff validation workflow --- .github/workflows/cffconvert.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/cffconvert.yml diff --git a/.github/workflows/cffconvert.yml b/.github/workflows/cffconvert.yml new file mode 100644 index 0000000..4277de8 --- /dev/null +++ b/.github/workflows/cffconvert.yml @@ -0,0 +1,18 @@ +name: Validate CITATION.cff using cffconvert +on: + push: + paths: + - CITATION.cff + +jobs: + validate: + name: "validate" + runs-on: ubuntu-latest + steps: + - name: Check out a copy of the repository + uses: actions/checkout@v6 + + - name: Check whether the citation metadata from CITATION.cff is valid + uses: citation-file-format/cffconvert-github-action@2.0.0 + with: + args: "--validate"