From ec02006e43c5216b35dfa48feb5cbf5db6a5adf5 Mon Sep 17 00:00:00 2001 From: CyberRonin Date: Wed, 30 Nov 2022 18:57:26 -0500 Subject: [PATCH] Add auto-assign GitHub Action --- .github/workflows/auto-assign.yml | 16 ++++++++++++++++ 1 file changed, 16 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..a2fb08a --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,16 @@ +name: Auto Assign Issues and PRs +on: + issues: + types: [opened] + pull_request: + types: [opened] + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/auto-assign@v2 + with: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + reviewers: TheCyberRonin + assignees: TheCyberRonin