From a3ebca0f265e751c75b09cf77352ce4eda49e97f Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 24 Jan 2024 17:49:16 -0500 Subject: [PATCH] chore(ci): auto assign issues (#28873) To make it easy for the team to quickly triage issues, we'd like to automatically assign issues to team members at random. This PR use https://github.com/marketplace/actions/auto-assign-issue to assign 1 member of the `framework` GitHub team to be the person to triage. --- .github/workflows/assign-issues.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/assign-issues.yml diff --git a/.github/workflows/assign-issues.yml b/.github/workflows/assign-issues.yml new file mode 100644 index 0000000000..7a9eb75fd4 --- /dev/null +++ b/.github/workflows/assign-issues.yml @@ -0,0 +1,19 @@ +name: Assign issues to triage + +on: + issues: + types: [opened] + +jobs: + auto-assign: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: 'Auto-assign issue' + uses: pozil/auto-assign-issue@edee9537367a8fbc625d27f9e10aa8bad47b8723 # v1.13.0 + with: + repo-token: ${{ secrets.IONITRON_TOKEN }} + teams: framework + numOfAssignee: 1 + allowSelfAssign: false