CI - Release candidate and hotfix branches #4
Workflow file for this run
This file contains hidden or 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
| # Workflow for continuous integration tasks triggered on push to a release candidate branch | ||
| name: CI - Release candidate and hotfix branches | ||
| run-name: CI - Release candidate and hotfix branches | ||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: ["rc**", "hotfix**"] | ||
| jobs: | ||
| open-pull-request: | ||
| # Open a PR if the branch isn't release itself | ||
| if: ${{ github.head_ref || github.ref_name }} != 'release' | ||
|
Check warning on line 13 in .github/workflows/ci-rc-hotfix.yml
|
||
| uses: ./.github/workflows/job-open-pull-request.yml | ||
| with: | ||
| target: release | ||
| # Pass an empty string for args, which disables the default -d flag which creates the PR as a draft | ||
| args: | ||