Skip to main content

GitHub Action: release-branch-manager

GitHub Action for Managing Release Branches

Introduction

This GitHub Action adopts a streamlined approach to managing release branches, drawing on a trunk-based branching strategy. In this model, the DEFAULT_BRANCH consistently represents the most recent release, while release branches are exclusively created for previous major releases, if applicable. This structure simplifies the process for contributors when submitting Pull Requests for bug fixes or backporting modifications to older releases, as it enables them to target a specific major release.

How it works: upon publishing a new major release N, a corresponding branch for the previous release N-1 will be automatically generated.

Imagine you have tags like this in your repo:

0.1.0
0.2.0
1.0.0
1.1.0
1.2.0
1.2.1
2.0.0
2.1.0
2.2.0
3.0.0
3.1.0 main

Upon the first release published event, the "release branch manager" will generate new branches named release/vN-1, where N corresponds to the latest tag of each major release. In this case, several new branches will be created:

0.1.0
0.2.0 release/v0
1.0.0
1.1.0
1.2.0
1.2.1 release/v1
2.0.0
2.1.0
2.2.0 release/v2
3.0.0
3.1.0 main

Note that 3.1.0 is latest tag and release branch manager wouldn't create release branch because latest major release is maintained in main branch.

If you wish to make changes to 2.2.0, you must create a pull request for the release/v2 branch and generate a corresponding release/tag with a major version of 2, for example, 2.3.0.

This action requires GitHub releases to follow the SemVer versioning scheme.

Usage

Example of workflow that that will create major release tags. To use it, just add this workflow to your .github/workflows directory.

  name: github-action-release-branch-manager

on:
release:
types:
- published

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: cloudposse/github-action-release-branch-manager@v1

Inputs

NameDescriptionDefaultRequired
dry-runRun action without pushing changes to upstreamfalsefalse
git-user-emailGit user email that will be used for git config[email protected]false
git-user-nameGit user name that will be used for git configactions-botfalse
log-levelLog level for this action. Available options: ['off', 'error', 'warn', 'info', 'debug']. Default 'info'infofalse
minimal-versionMinimal 'major' version that release branch creation should start from0false
tokenGitHub Token used to perform git and GitHub operations${{ github.token }}false

Outputs

NameDescription
responseResponse in json format for example: {"succeeded":true,"reason":"CREATED_BRANCHES","message":"Successfully created release branches","data":{"release/v3":"3.1.0","release/v2":"2.0.0","release/v1":"1.1.0"}}