2024-03-25 09:57:13 -04:00
|
|
|
# auto-assign-issue (https://github.com/marketplace/actions/auto-assign-issue)
|
|
|
|
name: Issue assignment
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [opened]
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
auto-assign:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: pozil/auto-assign-issue@v1
|
2024-03-28 14:14:34 -04:00
|
|
|
if: "contains(github.event.issue.labels.*.name, 'type: bug') || contains(github.event.issue.labels.*.name, 'type: feature')"
|
2024-03-25 09:57:13 -04:00
|
|
|
with:
|
2024-03-28 11:48:15 -04:00
|
|
|
assignees: abhi1693,arthanson,DanSheps,jeffgdotorg,jeremystretch
|
2024-03-25 09:57:13 -04:00
|
|
|
numOfAssignee: 1
|
|
|
|
abortIfPreviousAssignees: true
|