From b86d3afd8d019a5159fea3fdbe303070f4301181 Mon Sep 17 00:00:00 2001 From: Lukas Zapletal Date: Mon, 28 Jul 2025 12:21:58 +0200 Subject: [PATCH] workflows: use correct token for gobump The newly added gobump was using the default token but this one is not configured with all required permissions for this repo. This was causing tests not being executed on github. --- .github/workflows/gobump.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gobump.yml b/.github/workflows/gobump.yml index ce61e43e5..365632566 100644 --- a/.github/workflows/gobump.yml +++ b/.github/workflows/gobump.yml @@ -18,5 +18,5 @@ jobs: uses: lzap/gobump@main with: go_version: "1.23.9" - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }} exec_pr: ./tools/prepare-source.sh