From e2faec792269bb6cbea51b4e7a1c983fb002607f Mon Sep 17 00:00:00 2001 From: LinXunFeng Date: Sun, 31 Mar 2024 12:47:19 +0800 Subject: [PATCH] update: github workflows --- .github/workflows/assign-issue.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/assign-issue.yml diff --git a/.github/workflows/assign-issue.yml b/.github/workflows/assign-issue.yml new file mode 100644 index 0000000..d54ea42 --- /dev/null +++ b/.github/workflows/assign-issue.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: LinXunFeng \ No newline at end of file