Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.29 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.29 KB

NeuroLibre :: Deposit with NeuroLibre

This action deposit an accepted paper with NeuroLibre

Usage

Usually this action is used as a step in a workflow after the paper's pdf and xml files are already accepted into the papers repository.

Inputs

The action accepts the following inputs:

  • journal_alias: Required. The alias of the Open Journal to deposit with
  • journal_secret: Required. The access token to be used to post the paper payload
  • issue_id: Required. The issue number of the submission in the reviews repository
  • paper_path: Required. The complete filepath of the paper.md file

Outputs

  • paper_doi: The DOI for the accepted paper

Example

Use it adding it as a step in a workflow .yml file in your repo's .github/workflows/ directory and passing your custom input values.

on:
  workflow_dispatch:
   inputs:
      issue_id:
        description: 'The issue number of the submission'
jobs:
  processing:
    runs-on: ubuntu-latest
    steps:
      - name: Deposit with Open Journals
        uses: neurolibre/deposit-with-neurolibre-action@main
        with:
          journal_url: https://neurolibre.org
          journal_secret: ${{ secrets.JOURNAL_SECRET }}
          issue_id: ${{ github.event.inputs.issue_id }}
          paper_path: ./docs/paper.md