Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.kodiak.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version = 1

[approve]
auto_approve_usernames = ["cq-bot"]
auto_approve_usernames = ["cloudquery-ci"]

[merge.message]
body = "pull_request_body"
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/regen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Generate GitHub App token
id: app-token
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3
with:
app-id: ${{ secrets.CQ_APP_ID }}
private-key: ${{ secrets.CQ_APP_PRIVATE_KEY }}
permission-contents: write
permission-pull-requests: write
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Python
Expand All @@ -27,11 +35,10 @@ jobs:
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8
with:
# required so the PR triggers workflow runs
token: ${{ secrets.GH_CQ_BOT }}
token: ${{ steps.app-token.outputs.token }}
branch: fix/gen_proto
base: main
title: "fix: Generate Python Code from `plugin-pb`"
commit-message: "fix: Generate Python Code from `plugin-pb`"
body: This PR was created by a scheduled workflow to regenerate the Python code from `plugin-pb`.
author: cq-bot <cq-bot@users.noreply.github.com>
labels: automerge
10 changes: 9 additions & 1 deletion .github/workflows/release_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: Generate GitHub App token
id: app-token
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3
with:
app-id: ${{ secrets.CQ_APP_ID }}
private-key: ${{ secrets.CQ_APP_PRIVATE_KEY }}
permission-contents: write
permission-pull-requests: write
- uses: google-github-actions/release-please-action@e4dc86ba9405554aeba3c6bb2d169500e7d3b4ee # v4
id: release
with:
token: ${{ secrets.GH_CQ_BOT }}
token: ${{ steps.app-token.outputs.token }}
Loading