From f06a9e07c0a9c2fed115dc8238ed2c9c46ac5c01 Mon Sep 17 00:00:00 2001 From: statiolake Date: Fri, 10 Jan 2020 01:41:13 +0900 Subject: [PATCH] Use Personal Access Token instead of Github token Default Github token does not trigger CI when bot creates a new PR. See for more details. --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index a767fac..4aca93d 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -94,7 +94,7 @@ jobs: - name: Create Pull Request uses: peter-evans/create-pull-request@v2 with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.REPO_SCOPED_TOKEN }} commit-message: "[bot] Update the crates" title: "[bot] Update the crates" body: ${{ steps.upgrade.outputs.body }}