We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146bb00 commit 9940a93Copy full SHA for 9940a93
2 files changed
.github/.kodiak.toml
@@ -1,7 +1,7 @@
1
version = 1
2
3
[approve]
4
-auto_approve_usernames = ["cq-bot"]
+auto_approve_usernames = ["cloudquery-ci"]
5
6
[merge.message]
7
body = "pull_request_body"
.github/workflows/release_pr.yml
@@ -10,7 +10,15 @@ jobs:
10
release-please:
11
runs-on: ubuntu-latest
12
steps:
13
+ - name: Generate GitHub App token
14
+ id: app-token
15
+ uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3
16
+ with:
17
+ app-id: ${{ secrets.CQ_APP_ID }}
18
+ private-key: ${{ secrets.CQ_APP_PRIVATE_KEY }}
19
+ permission-contents: write
20
+ permission-pull-requests: write
21
- uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4
22
id: release
23
with:
- token: ${{ secrets.GH_CQ_BOT }}
24
+ token: ${{ steps.app-token.outputs.token }}
0 commit comments