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.
This commit is contained in:
Liam DeBeasi
2024-01-24 17:49:16 -05:00
committed by GitHub
parent e10f49c43d
commit a3ebca0f26

19
.github/workflows/assign-issues.yml vendored Normal file
View File

@ -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