From 92033a82dba27f90f1a3b79f37f59eef5da82cac Mon Sep 17 00:00:00 2001 From: Sidharthan Chandrasekaran Kamaraj Date: Sat, 6 May 2023 17:25:56 +0200 Subject: [PATCH] auto assign issues (#7) --- .github/workflows/auto-assign-issues.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/auto-assign-issues.yml diff --git a/.github/workflows/auto-assign-issues.yml b/.github/workflows/auto-assign-issues.yml new file mode 100644 index 0000000..3bebfdc --- /dev/null +++ b/.github/workflows/auto-assign-issues.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: cksidharthan + numOfAssignee: 1 \ No newline at end of file