From 18e0a3ad6db435f4eaf6dd74b90848190d3a1034 Mon Sep 17 00:00:00 2001 From: Tulili Date: Fri, 8 Mar 2024 02:01:36 -0300 Subject: [PATCH] chore: automatically-assign tulilirockz to issues --- .github/workflows/auto-assign.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/auto-assign.yml diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 0000000..3abe865 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,19 @@ +name: Auto Assign +on: + issues: + types: [opened] + pull_request: + types: [opened] +jobs: + run: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - name: 'Auto-assign issue' + uses: pozil/auto-assign-issue@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + assignees: tulilirockz + numOfAssignee: 1