auto-assign.yaml 411 B

12345678910111213141516
  1. name: Assign issue to contributor
  2. on:
  3. issue_comment:
  4. types: [created, edited]
  5. jobs:
  6. assign:
  7. name: Run self assign job
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: take the issue
  11. uses: bdougie/take-action@main
  12. with:
  13. message: Thanks for taking this issue! Let us know if you have any questions!
  14. trigger: /assign
  15. token: ${{ secrets.GITHUB_TOKEN }}