From c95c68a5dee260407c42bcd04280bf7c3d75da87 Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Sat, 21 Dec 2024 15:17:09 -0700 Subject: [PATCH] Auto-assign issues --- .github/workflows/issue.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/issue.yml diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml new file mode 100644 index 000000000..83909f463 --- /dev/null +++ b/.github/workflows/issue.yml @@ -0,0 +1,21 @@ +name: Issue creation + +on: + issues: + types: + - opened + +jobs: + auto-assign: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Auto-assign issue + uses: pozil/auto-assign-issue@v2 + with: + teams: maintainers + numOfAssignee: 1 + allowSelfAssign: true + env: + GITHUB_TOKEN: ${{ secrets.OPENAPI_TS_BOT_GITHUB_TOKEN }}