Files
headlamp-sealed-secrets-plugin/.github/workflows/release.yaml
T
privilegedescalation-paperclip[bot] 71f9bd5146 ci: pass GitHub App token secrets to release workflow
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: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-20 00:46:10 +00:00

24 lines
551 B
YAML

name: Release
on:
workflow_dispatch:
inputs:
version:
description: 'Release version (e.g. 1.0.0)'
required: true
type: string
permissions:
contents: write
pull-requests: write
jobs:
release:
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:
version: ${{ inputs.version }}
upstream-repo: 'bitnami-labs/sealed-secrets'