From 9718e528024c7f71b18805b2593fd90142bd68b0 Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Sun, 18 Sep 2022 22:43:14 -0400 Subject: [PATCH] label new issues with 'triage' label and add them to org project --- .github/workflows/label_new_issues.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/label_new_issues.yaml diff --git a/.github/workflows/label_new_issues.yaml b/.github/workflows/label_new_issues.yaml new file mode 100644 index 0000000000..79753dbccc --- /dev/null +++ b/.github/workflows/label_new_issues.yaml @@ -0,0 +1,17 @@ +name: Label New Issue + +on: + issues: + types: opened + +jobs: + label_new_issue: + uses: AntelopeIO/issue-project-labeler-workflow/.github/workflows/issue-project-labeler.yaml@v1 + with: + issue-id: ${{github.event.issue.node_id}} + label: triage + org-project: 'Team Backlog' + project-field: Status=Todo + secrets: + token: ${{secrets.ENFCIBOT_REPO_AND_PROJECTS}} +