Files
headlamp-tns-csi-plugin/.github/workflows/release.yaml
T
Hugh Hackman [bot] e673bc68c4 fix: add pull-requests write permission to release workflow
The reusable release workflow declares pull-requests:write but the
caller didn't grant it, causing startup_failure on GitHub Actions.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 21:24:53 +00:00

21 lines
400 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
with:
version: ${{ inputs.version }}
upstream-repo: fenio/tns-csi