-
Notifications
You must be signed in to change notification settings - Fork 25
28 lines (28 loc) · 925 Bytes
/
references.yml
File metadata and controls
28 lines (28 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Check bibtex references
on:
workflow_dispatch:
inputs:
repository_url:
description: 'URL of the repository where the paper file is'
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.BOT_TOKEN }}
GH_REPO: openjournals/joss-reviews
jobs:
run-doi-validation:
name: ${{ format('DOIs validation for issue {0}', github.event.inputs.issue_id) }}
runs-on: ubuntu-latest
steps:
- name: DOIs 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 }}