Retract paper #11
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
name: Retract paper | |
on: | |
workflow_dispatch: | |
inputs: | |
issue_id: | |
description: 'The issue number of the retracted paper review' | |
required: true | |
retraction_notice_url: | |
description: 'URL for the markdown file of the retraction notice' | |
required: true | |
mode: | |
description: Set the compiled retraction notice as a draft or as a final published paper. Posible values are 'draft' or 'final'. | |
required: false | |
default: draft | |
jobs: | |
retraction-notice: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate retraction notice | |
id: generate-retraction | |
uses: xuanxu/retraction-action@main | |
with: | |
retraction_notice_url: ${{ github.event.inputs.retraction_notice_url }} | |
issue_id: ${{ github.event.inputs.issue_id }} | |
journal: joss | |
mode: ${{ github.event.inputs.mode }} |