The tagpr
clarify the release flow. It automatically creates and updates a pull request for unreleased items, tag them when they are merged, and create releases.
The tagpr
is designed to run on github actions.
# .github/workflows/tagpr.yml
name: tagpr
on:
push:
branches: ["main"]
jobs:
tagpr:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: Songmu/tagpr@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
To enable pull requests to be created through GitHub Actions, check the "Allow GitHub Actions to create and approve pull requests" box in the "Workflow permissions" section under "Settings > Actions > General" in the repository where you are installing tagpr
.
If you do not want to use the token provided by GitHub Actions, do the following This is useful if you want to trigger another action with a tag.
For simplicity, we include an example of specifying a personal access token here. However, issuing the temporary token in conjunction with the GitHub App would be safer than a personal access token.
name: tagpr
on:
push:
branches:
- main
jobs:
tagpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
- uses: Songmu/tagpr@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
By using tagpr
, the release flow can be made easier and more apparent because it can be put into a flow where the release is completed by pressing the merge button on a pull request that is automatically created.
If there are differences between the last release and the main branch, tagpr generates a pull request for the next release. The tagpr considers a semver tagged commit as a release. It would be standard practice.
You can leave this pull request until you want to make the next release; each time the main branch is updated, this pull request will automatically follow it.
When this pull request is merged, the merge commit is automatically tagged, and GitHub Releases are created simultaneously.
As mentioned at the beginning of this section, the release process becomes simply a matter of pressing the merge button.
In addition, release items will be made into pull requests, allowing for visualization and review of necessary changes at the time of release. This is also important to prevent accidents.
How tagpr proposes the next version number and how to adjust it.
When creating a pull request by tagpr, the next version number candidate is determined in the following way.
- Conventional Labels: If the merged pull requests for the next release have labels named "major" or "minor," the version is determined accordingly (of course, major has priority).
- If no conventional labels are found, the patch version is incremented.
You can adjust the next version number suggested by tagpr directly on the pull request created by tagpr.
There are two ways to do it.
Edit and commit the version file specified in the .tagpr configuration file to describe the next version
Add labels to the pull request like "tagpr:minor" or "tagpr:major." It is helpful to use a flow that does not use version files.
If there is a discrepancy between the version file and the conventional labels at the time of merging, the specification in the version file takes precedence.
Describe the settings in the .tagpr file directly under the repository in gitconfig format. This is automatically created the first time tagpr is run, but feel free to adjust it. The following configuration items are available
Generally, it is "main." It is the branch for releases. The tagpr tracks this branch, creates or updates a pull request as a release candidate, or tags when they are merged.
Versioning file containing the semantic version needed to be updated at release. It will be synchronized with the "git tag". Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc. Sometimes the source code file, such as version.go or Bar.pm, is used. If you do not want to use versioning files but only git tags, specify the "-" string here. You can specify multiple version files by comma separated strings.
Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
This is only a tagging convention, not how it is described in the version file.
Flag whether or not changelog is added or changed during the release.
Command to change files just before release.
Pull request template file in go template format
Pull request template text in go template format
GitHub Release creation behavior after tagging [true, draft, false]
If this value is not set, the release is to be created.
Label of major update targets. Default is [major]
Label of minor update targets. Default is [minor]
Prefix of commit message. Default is "[tagpr]"
If you are using GitHub Enterprise, use GH_ENTERPRISE_TOKEN
instead of GITHUB_TOKEN
.
- uses: Songmu/tagpr@v1
env:
GH_ENTERPRISE_TOKEN: ${{ secrets.GITHUB_TOKEN }}
A path to the tagpr configuration file. If not specified, it will be ".tagpr" in the repository root.
The tagpr produces output to be used in conjunction with subsequent GitHub Actions jobs.
pull_request
: Information of the pull request created by tagpr in JSON formattag
: Tag strings are output only if the tagpr has tagged
It is useful to see if tag is available and to run tasks after release. The following is an example of running action-update-semver after release.
- uses: actions/checkout@v4
- id: tagpr
uses: Songmu/tagpr@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: haya14busa/action-update-semver@v1
if: "steps.tagpr.outputs.tag != ''"
with:
tag: ${{ steps.tagpr.outputs.tag }}