Updated CHANGELOG.md #11
Workflow file for this run
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
name: '[RELEASE] Create PR to Release Branch' | |
on: | |
push: | |
tags: [ 'v*.*.*' ] | |
workflow_dispatch: | |
jobs: | |
create-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: release | |
- name: Reset promotion branch | |
run: | | |
git fetch origin master:master | |
git reset --hard master | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: 'chore: Merge master into release branch' | |
title: '[CHORE] Create PR from master to release' | |
body: 'The workflow is triggered by publishing a new tag. This PR merges changes from master to release.' | |
branch: 'master-to-release' |