From 4843a9140ffde2912ca577c5e714041d0a1af5b6 Mon Sep 17 00:00:00 2001 From: codycooperross <50597551+codycooperross@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:37:10 -0400 Subject: [PATCH] Create workflows.yml --- .github/workflows/workflows.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/workflows.yml 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 }}