From fc37890241ff3be472fc71e6f0954e01aa418bf9 Mon Sep 17 00:00:00 2001 From: Elizabeth Campolongo <38985481+egrace479@users.noreply.github.com> Date: Thu, 14 May 2026 18:28:37 -0400 Subject: [PATCH 1/2] Add tip to look at rendering on branch to check citation file Pull from Collab Guide [PR 77](https://github.com/Imageomics/Collaborative-distributed-science-guide/pull/77) * Improve phrasing for more clarity Co-authored-by: Hilmar Lapp --------- Co-authored-by: Hilmar Lapp --- docs/wiki-guide/GitHub-Repo-Guide.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/wiki-guide/GitHub-Repo-Guide.md b/docs/wiki-guide/GitHub-Repo-Guide.md index d516a3f..72a2f16 100644 --- a/docs/wiki-guide/GitHub-Repo-Guide.md +++ b/docs/wiki-guide/GitHub-Repo-Guide.md @@ -115,7 +115,7 @@ Providing this file is as simple as copying the below example and filling in you === "Standard Citation File (Recommended)" - !!! tip + !!! tip "Pro tip" Pair this citation file with a [`.zenodo.json`](#zenodo-metadata) for easier DOI metadata tracking (grants, references, associated papers). ```yaml { py linenums="1" } @@ -215,6 +215,10 @@ Providing this file is as simple as copying the below example and filling in you date-released: ``` +!!! tip "Pro tip" + Check whether your citation renders correctly on a branch. When you push the `CITATION.cff` to a branch and browse the repository at that branch, you can select "Cite this repository" in the righthand sidebar to see if it is rendering as expected: + ![Screenshot of "Cite this repository" pop-up on the Collaborative Distributed Science Guide repository. It shows APA and BibTeX 'content tabs' with the beginnings of a scrollable and copiable citation](images/GH-repo-guide/citation-cff-check.png) + ## Recommended Files Though the following files are not included in every repository and do not have a simple selection process integrated into GitHub, they are extremely important (if not essential) to maintaining FAIR principles and reproducibility in projects, as well as ensuring proper attribution for your work. From 6fa08b50afccdf7d9a3554d5a63bfa68f64de145 Mon Sep 17 00:00:00 2001 From: Elizabeth Campolongo <38985481+egrace479@users.noreply.github.com> Date: Tue, 19 May 2026 15:39:48 -0400 Subject: [PATCH 2/2] Update actions and Node versions Pull from Collab Guide [PR 78](https://github.com/Imageomics/Collaborative-distributed-science-guide/pull/78) --- .github/workflows/validate-zenodo.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate-zenodo.yaml b/.github/workflows/validate-zenodo.yaml index cb4ee12..cf65844 100644 --- a/.github/workflows/validate-zenodo.yaml +++ b/.github/workflows/validate-zenodo.yaml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: - node-version: '22' + node-version: '24' - name: Install dependencies run: npm install zenodraft@0.14.1 - name: Check .zenodo.json file