diff options
Diffstat (limited to '.github/workflows/auto-author-assign.yml')
-rw-r--r-- | .github/workflows/auto-author-assign.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/auto-author-assign.yml b/.github/workflows/auto-author-assign.yml index cd30420f3..464ec2e3c 100644 --- a/.github/workflows/auto-author-assign.yml +++ b/.github/workflows/auto-author-assign.yml @@ -1,4 +1,4 @@ -name: "Assign Author to PR" +name: "PR Triage" on: pull_request_target: types: [opened, reopened, ready_for_review, locked] @@ -10,4 +10,7 @@ jobs: assign-author: runs-on: ubuntu-latest steps: - - uses: toshimaru/auto-author-assign@v1.3.5 + - name: "Assign Author to PR" + uses: toshimaru/auto-author-assign@v1.3.5 + with: + token: ${{ secrets.GITHUB_TOKEN }} |