We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26eb2ce commit bc473c1Copy full SHA for bc473c1
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
@@ -11,7 +11,15 @@ jobs:
11
release-please:
12
runs-on: ubuntu-latest
13
steps:
14
+ - name: Generate GitHub App token
15
+ id: app-token
16
+ uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3
17
+ with:
18
+ app-id: ${{ secrets.CQ_APP_ID }}
19
+ private-key: ${{ secrets.CQ_APP_PRIVATE_KEY }}
20
+ permission-contents: write
21
+ permission-pull-requests: write
22
- uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4
23
id: release
24
with:
- token: ${{ secrets.GH_CQ_BOT }}
25
+ token: ${{ steps.app-token.outputs.token }}
0 commit comments