Skip to content

another attempt!

another attempt! #7

Workflow file for this run

name: Merge stable into child branches
on:
push:
branches: ["stable"]
jobs:
create-pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all branches and their history
- name: Fetch all branches
run: git fetch --all
- name: Merge changes
run: |
git checkout minor-next
git merge stable
- name: Create Pull Request for branch 'minor-next'
id: minor-next
uses: peter-evans/create-pull-request@v6
with:
base: minor-next
title: Merge branch 'stable' into minor-next