-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Check paper references | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
repository_url: | ||
description: 'URL of the repository where the paper file is: org/reponame' | ||
required: true | ||
branch: | ||
description: 'Git branch with the paper file' | ||
required: false | ||
default: "" | ||
issue_id: | ||
description: 'The issue number of the submission to post the results' | ||
required: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PDF_BOT_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
jobs: | ||
run-analysis: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Bibtex entries validation | ||
uses: openjournals/gh-action-check-references @main | ||
with: | ||
repository_url: ${{ github.event.inputs.repository_url }} | ||
branch: ${{ github.event.inputs.branch }} | ||
issue_id: ${{ github.event.inputs.issue_id }} |