2
0

auto-assign-issue.yml 568 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. with:
  14. # Some assignees are listed multiple times to effect a weighted rotation
  15. assignees: jeremystretch,jeremystretch,jeremystretch,jeremystretch,arthanson,arthanson,arthanson,arthanson,DanSheps,abhi1693
  16. numOfAssignee: 1
  17. abortIfPreviousAssignees: true