-
Notifications
You must be signed in to change notification settings - Fork 1
Add orcids #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add orcids #23
Changes from 18 commits
10edc10
c127ac9
0abc7b3
c52d145
6606c64
cdf8869
bae82b0
dd4d86e
b6f15e0
fdc564c
214fe3e
d21c336
6b21e09
a676987
1a954b5
871f4b0
7e453a9
145d480
869d9b2
4b10290
c824a72
f1cc697
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -18,5 +18,6 @@ jobs: | |||||||
| # only run on user instance of template, not template itself | ||||||||
| if: github.repository != 'greenelab/lab-website-template' | ||||||||
| uses: ./.github/workflows/update-citations.yaml | ||||||||
| secrets: inherit | ||||||||
|
||||||||
| secrets: inherit | |
| secrets: | |
| GOOGLE_SCHOLAR_API_KEY: ${{ secrets.GOOGLE_SCHOLAR_API_KEY }} |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -7,6 +7,9 @@ on: | |||||
| inputs: | ||||||
| open-pr: | ||||||
| type: boolean | ||||||
| secrets: | ||||||
| GOOGLE_SCHOLAR_API_KEY: | ||||||
| required: true | ||||||
|
||||||
| required: true | |
| required: false |
Outdated
Copilot
AI
Nov 17, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The environment variable GOOGLE_SCHOLAR_API_KEY is referenced but never set in the workflow. The secret needs to be explicitly assigned to an environment variable using env: before it can be accessed in the shell script. Add env: GOOGLE_SCHOLAR_API_KEY: ${{ secrets.GOOGLE_SCHOLAR_API_KEY }} to the step.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Google Scholar author IDs | ||
| # To find a researcher's Google Scholar ID: | ||
| # 1. Go to https://scholar.google.com | ||
| # 2. Search for the researcher | ||
| # 3. Click on their profile | ||
| # 4. The URL will look like: https://scholar.google.com/citations?user=XXXXXXXXX | ||
| # 5. Use XXXXXXXXX as the gsid below | ||
|
|
||
| - gsid: flhs-gwAAAAJ # Mirko Degli Esposti | ||
| - gsid: Z6lHULUAAAAJ # Gregorio Berselli |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,4 @@ | ||
| - orcid: 0000-0002-9633-0017 | ||
| - orcid: 0000-0003-0316-3449 | ||
| - orcid: 0000-0002-9633-0017 # Armando Bazzani | ||
| - orcid: 0000-0003-0316-3449 # Mirko Degli Esposti | ||
| - orcid: 0000-0002-0005-0441 # Giulio Colombini | ||
| - orcid: 0009-0004-7797-9138 # Gregorio Berselli |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using
secrets: inheritpasses all repository secrets to the reusable workflow, but the update-citations.yaml workflow declares GOOGLE_SCHOLAR_API_KEY as a required secret. This is inconsistent - either make the secret optional in update-citations.yaml or explicitly pass it here like in on-pull-request.yaml to make the dependency clear.