Skip to content

Release

Release #1

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
version:
description: Version to release (semver, bump type, or "auto")
required: true
default: 'auto'
force:
description: Force release even with blockers
required: false
jobs:
ci:

Check failure on line 14 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 14, Col: 3): Error calling workflow 'getsentry/cli/.github/workflows/ci.yml@e769f8315b9bf8a336f8059fbfa9d1c9076ed977'. The nested job 'test' is requesting 'actions: read, pull-requests: write', but is only allowed 'actions: none, pull-requests: none'.
uses: ./.github/workflows/ci.yml
permissions:
contents: read
secrets: inherit
release:
needs: [ci]
uses: getsentry/craft/.github/workflows/release.yml@v2
with:
version: ${{ inputs.version }}
force: ${{ inputs.force }}
publish_repo: getsentry/publish
secrets: inherit
permissions:
contents: write