From 9cb387595f35f97c84d6bdb11fb2e55f03a2fd48 Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Mon, 7 Feb 2022 12:23:07 +0100 Subject: [PATCH 1/4] Add cffconvert.yml to validate CITATION.cff --- .github/workflows/cffconvert.yml | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 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 0000000000000..398b888004f37 --- /dev/null +++ b/.github/workflows/cffconvert.yml @@ -0,0 +1,33 @@ +name: cffconvert + +on: + push: + branches: + - 'master' + - 'release-*' + paths: + - CITATION.cff + pull_request: + branches: + - 'master' + - 'release-*' + paths: + - CITATION.cff + +permissions: + contents: read + +jobs: + validate: + name: "validate" + runs-on: ubuntu-latest + steps: + - name: Check out a copy of the repository + uses: actions/checkout@v2 + with: + persist-credentials: false + + - name: Check whether the citation metadata from CITATION.cff is valid + uses: citation-file-format/cffconvert-github-action@2.0.0 + with: + args: "--validate" From 5e59d1470301c6fa56f2ba3b1039d3a0836e367c Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Thu, 24 Feb 2022 09:01:31 +0100 Subject: [PATCH 2/4] No-op change to CITATION.cff --- CITATION.cff | 1 + 1 file changed, 1 insertion(+) diff --git a/CITATION.cff b/CITATION.cff index c88727bcfa311..03ff253e5c51b 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,3 +1,4 @@ +# Cite me cff-version: 1.2.0 message: "Cite this paper whenever you use Julia" authors: From 75cb753b8456394a33e2bbe58800b9bf58650135 Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Mon, 13 Jun 2022 09:25:35 +0200 Subject: [PATCH 3/4] Add link to the CFF description --- CITATION.cff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CITATION.cff b/CITATION.cff index 03ff253e5c51b..878ab94a4d86a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,4 +1,4 @@ -# Cite me +# Official format description at https://citation-file-format.github.io cff-version: 1.2.0 message: "Cite this paper whenever you use Julia" authors: From 0f523c12ff728233f3f3a15fd5bcfe64a92a0f88 Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Tue, 27 Feb 2024 22:03:16 +0100 Subject: [PATCH 4/4] Update .github/workflows/cffconvert.yml Co-authored-by: Max Horn --- .github/workflows/cffconvert.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cffconvert.yml b/.github/workflows/cffconvert.yml index 398b888004f37..751476865ae4c 100644 --- a/.github/workflows/cffconvert.yml +++ b/.github/workflows/cffconvert.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out a copy of the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: persist-credentials: false