Skip to content

Add release workflows #1

Add release workflows

Add release workflows #1

# Invokes the release workflow whenever a release candidate PR is merged
name: RC Release
on:
pull_request:
types:
- closed
jobs:
publish:
if: contains(github.event.pull_request.labels.*.name, 'release-candidate') && github.event.pull_request.merged == true
name: Publish Release
uses: ./.github/workflows/release.yaml
with:
dry-run: false
secrets: inherit