Skip to content

Commit b7b9ee5

Browse files
authored
ci(release): use correct secret name in release-pr workflow (cloudnative-pg#10309)
The workflow was using `secrets.GHA_PAT` but the actual secret configured in the repository is `REPO_GHA_PAT`, causing the workflow to fail. Closes cloudnative-pg#10308 Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
1 parent cd921de commit b7b9ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: repo-sync/pull-request@572331753c3787dee4a6c0b6719c889af9646b81 # v2.12
3434
with:
3535
destination_branch: ${{ env.DEST }}
36-
github_token: ${{ secrets.GHA_PAT }}
36+
github_token: ${{ secrets.REPO_GHA_PAT }}
3737
pr_body: "Automated PR. Will trigger the ${{ env.TAG }} release when approved."
3838
pr_label: release
3939
pr_title: "Version tag to ${{ env.TAG }}"

0 commit comments

Comments
 (0)