|
|
@@ -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
|