Remove obsolete sentence in readme #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Invokes the release workflow in dry-run mode whenever a release candidate PR is opened or updated | |
name: RC-PR | |
on: pull_request | |
jobs: | |
rc-publish-dry-run: | |
name: Publish Release (dry-run) | |
if: contains(github.event.pull_request.labels.*.name, 'release-candidate') | |
uses: ./.github/workflows/release.yaml | |
with: | |
dry-run: true | |
secrets: inherit |