diff --git a/.github/workflows/auto-assign.yaml b/.github/workflows/auto-assign.yaml new file mode 100644 index 000000000..fce7665e5 --- /dev/null +++ b/.github/workflows/auto-assign.yaml @@ -0,0 +1,20 @@ +--- +name: Assign issue to contributor +# yamllint disable-line rule:truthy +on: + issue_comment: + types: [created, edited] + +jobs: + assign: + name: Run self assign job + runs-on: ubuntu-latest + steps: + - name: take the issue + uses: bdougie/take-action@main + with: + message: > + Thanks for taking this issue! + Let us know if you have any questions! + trigger: /assign + token: ${{ secrets.GITHUB_TOKEN }}