From 03185a596405dff669ad8ad2a8d790438a4bd332 Mon Sep 17 00:00:00 2001 From: japananh Date: Fri, 19 Jan 2024 00:43:28 +0700 Subject: [PATCH] feat: test github action --- .github/workflows/pull-request.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 7bf5ac5..d637a14 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -1,8 +1,15 @@ name: Auto Assign -on: pull_request + +on: + issues: + types: [opened] + pull_request: + types: [opened] jobs: add-reviews: runs-on: ubuntu-latest steps: - - uses: kentaro-m/auto-assign-action@v1.2.6 \ No newline at end of file + - uses: kentaro-m/auto-assign-action@v1.2.6 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file