From 2c9a8348cfbbade96ac3b32d4d1a91f1c152360d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20Suszy=C5=84ski?= Date: Mon, 17 Nov 2025 13:04:42 +0100 Subject: [PATCH] Fix autobump: use bot token to trigger CI checks GITHUB_TOKEN doesn't trigger workflows on created PRs due to GitHub's security policy. Switch to SERVERLESS_QE_ROBOT bot account token to ensure Mage and Lints workflows run on autobump PRs. --- .github/workflows/autobump.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autobump.yaml b/.github/workflows/autobump.yaml index e752f72..ec15a2a 100644 --- a/.github/workflows/autobump.yaml +++ b/.github/workflows/autobump.yaml @@ -28,4 +28,4 @@ jobs: --branch autobump/go --dep github.com/openshift-knative/hack env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.SERVERLESS_QE_ROBOT }}