From f67a805c1f10a164ed53275dfbec907a5b8e8311 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Mon, 5 Jul 2021 20:50:22 -0400 Subject: [PATCH] Add issue assigning action --- .github/workflows/take-action.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/take-action.yml diff --git a/.github/workflows/take-action.yml b/.github/workflows/take-action.yml new file mode 100644 index 0000000..c5b6f1f --- /dev/null +++ b/.github/workflows/take-action.yml @@ -0,0 +1,14 @@ +# .github/workflows/take.yml +name: Assign issue to contributor +on: + issue_comment: + +jobs: + assign: + name: Take an issue + runs-on: ubuntu-latest + steps: + - name: take the issue + uses: bdougie/take-action@main + env: + GITHUB_TOKEN: ${{ github.token }}