From 9a895feb6c37cf4e018fdc877ede09fa84be0b21 Mon Sep 17 00:00:00 2001 From: Steve Johnson Date: Sun, 22 Oct 2023 21:48:35 +0800 Subject: [PATCH] chore: update actions to auto trigger check in PR --- .github/workflows/update-dependencies.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/update-dependencies.yaml b/.github/workflows/update-dependencies.yaml index af8835de..f9255be3 100644 --- a/.github/workflows/update-dependencies.yaml +++ b/.github/workflows/update-dependencies.yaml @@ -49,10 +49,17 @@ jobs: cd ${{ github.workspace }}/core/src/main/golang/native/ go mod tidy + - uses: tibdex/github-app-token@v1 + id: generate-token + with: + app_id: ${{ secrets.MAINTAINER_APPID }} + private_key: ${{ secrets.MAINTAINER_APP_PRIVATE_KEY }} + - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@v5 with: + token: ${{ steps.generate-token.outputs.token }} commit-message: Update Dependencies branch: update-dependencies delete-branch: true