From 202e106486318d2d163ff36ef3cc416911e5a591 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Tue, 19 Oct 2021 22:47:43 +0100 Subject: [PATCH] Create workflow: auto-assign issues --- .github/workflows/issues.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/issues.yml diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml new file mode 100644 index 0000000..c50dd68 --- /dev/null +++ b/.github/workflows/issues.yml @@ -0,0 +1,15 @@ +name: Issue assignment + +on: + issues: + types: [opened] + +jobs: + auto-assign: + runs-on: ubuntu-latest + steps: + - name: 'Auto-assign issue' + uses: pozil/auto-assign-issue@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + assignees: luketainton