diff --git a/.github/workflows/workflows.yml b/.github/workflows/workflows.yml new file mode 100644 index 0000000..0d9947e --- /dev/null +++ b/.github/workflows/workflows.yml @@ -0,0 +1,16 @@ +name: Move new issues to triage +on: + issues: + types: + - opened +jobs: + label_issues: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - run: gh issue transfer "$NUMBER" datacite/product-suggestions-triage + env: + GH_TOKEN: ${{ secrets.GH_TOKEN }} + GH_REPO: ${{ github.repository }} + NUMBER: ${{ github.event.issue.number }}