ci: pass GitHub App token secrets to release workflow (#20)

The shared release workflow now requires RELEASE_APP_ID and
RELEASE_APP_PRIVATE_KEY secrets for PR creation, since the org
blocks GITHUB_TOKEN from creating PRs.

Depends on privilegedescalation/.github#31

Co-authored-by: privilegedescalation-paperclip[bot] <268365651+privilegedescalation-paperclip[bot]@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit was merged in pull request #20.
This commit is contained in:
privilegedescalation-paperclip[bot]
2026-03-20 13:24:36 +00:00
committed by GitHub
parent be9fe7ebd5
commit fe1d1dcf3e
+3
View File
@@ -15,6 +15,9 @@ permissions:
jobs: jobs:
release: release:
uses: privilegedescalation/.github/.github/workflows/plugin-release.yaml@main uses: privilegedescalation/.github/.github/workflows/plugin-release.yaml@main
secrets:
RELEASE_APP_ID: ${{ secrets.RELEASE_APP_ID }}
RELEASE_APP_PRIVATE_KEY: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}
with: with:
version: ${{ inputs.version }} version: ${{ inputs.version }}
upstream-repo: 'kube-vip/kube-vip' upstream-repo: 'kube-vip/kube-vip'