mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
21 lines
532 B
YAML
21 lines
532 B
YAML
# Automatically creates a new release branch with bumped revision
|
|
# after a successful CD pipeline run on master
|
|
name: Create Revision Release Branch
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Daybreak CD Pipeline"]
|
|
types:
|
|
- completed
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
create-release:
|
|
# Only run if the CD pipeline succeeded
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
uses: ./.github/workflows/create-release-branch-template.yml
|
|
with:
|
|
versionBump: bump-revision
|
|
secrets: inherit
|