0d72d07048
The reusable release workflow declares pull-requests:write but the caller didn't grant it, causing startup_failure on GitHub Actions. Co-authored-by: Hugh Hackman [bot] <hugh-hackman[bot]@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
430 B
YAML
21 lines
430 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: 'intel/intel-device-plugins-for-kubernetes'
|