71f9bd5146
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>
24 lines
551 B
YAML
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'
|