From 38fe2e2d2b4aec8b0cbdd822e146625f8e4f4b57 Mon Sep 17 00:00:00 2001 From: Chris Swan <478926+cpswan@users.noreply.github.com> Date: Tue, 25 Jul 2023 15:19:33 +0100 Subject: [PATCH] chore: Add autobug workflow --- .github/workflows/autobug.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/autobug.yaml diff --git a/.github/workflows/autobug.yaml b/.github/workflows/autobug.yaml new file mode 100644 index 00000000..3463b88c --- /dev/null +++ b/.github/workflows/autobug.yaml @@ -0,0 +1,22 @@ +name: Auto Assign Issues to Triage column in Sprint Planning Project Board + +on: + issues: + types: [opened] + +permissions: # added using https://github.com/step-security/secure-workflows + contents: read + +jobs: + issue_opened: + name: issue_opened + runs-on: ubuntu-latest + steps: + - name: 'Move issue to "Triage"' + uses: leonsteinhaeuser/project-beta-automations@d1c1261558118c0876fdb2b57a649303925e5a70 # v2.1.0 + with: + gh_token: ${{ secrets.MY_GITHUB_TOKEN }} + organization: atsign-foundation + project_id: 8 + resource_node_id: ${{ github.event.issue.node_id }} + status_value: "Triage"