auto-assign-issue.yml 558 B

1234567891011121314151617181920
  1. # auto-assign-issue (https://github.com/marketplace/actions/auto-assign-issue)
  2. name: Issue assignment
  3. on:
  4. issues:
  5. types: [opened]
  6. permissions:
  7. issues: write
  8. jobs:
  9. auto-assign:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: pozil/auto-assign-issue@v1
  13. if: "contains(github.event.issue.labels.*.name, 'type: bug') || contains(github.event.issue.labels.*.name, 'type: feature')"
  14. with:
  15. assignees: abhi1693,arthanson,DanSheps,jeffgdotorg,jeremystretch
  16. numOfAssignee: 1
  17. abortIfPreviousAssignees: true