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-04-15 12:12:35 -04:00
|
|
|
if: "contains(github.event.issue.labels.*.name, 'status: needs triage')"
|
2024-03-25 09:57:13 -04:00
|
|
|
with:
|
2024-04-04 09:20:20 -04:00
|
|
|
# Weighted assignments
|
|
|
|
assignees: arthanson:3, jeffgdotorg:3, jeremystretch:3, abhi1693, DanSheps
|
2024-03-25 09:57:13 -04:00
|
|
|
numOfAssignee: 1
|
|
|
|
abortIfPreviousAssignees: true
|