From 7c37c619ec15d866a8d32635bedc00efc4512d75 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 18 Sep 2024 05:31:48 +0000 Subject: [PATCH 1/2] [tagpr] prepare for the next release --- .github/release.yml | 4 ++++ .tagpr | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 .github/release.yml create mode 100644 .tagpr diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..b0c5175 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,4 @@ +changelog: + exclude: + labels: + - tagpr diff --git a/.tagpr b/.tagpr new file mode 100644 index 0000000..e9acf6f --- /dev/null +++ b/.tagpr @@ -0,0 +1,42 @@ +# config file for the tagpr in git config format +# The tagpr generates the initial configuration, which you can rewrite to suit your environment. +# CONFIGURATIONS: +# tagpr.releaseBranch +# 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. +# +# tagpr.versionFile +# 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. +# +# tagpr.vPrefix +# 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. +# +# tagpr.changelog (Optional) +# Flag whether or not changelog is added or changed during the release. +# +# tagpr.command (Optional) +# Command to change files just before release. +# +# tagpr.template (Optional) +# Pull request template in go template format +# +# tagpr.release (Optional) +# GitHub Release creation behavior after tagging [true, draft, false] +# If this value is not set, the release is to be created. +# +# tagpr.majorLabels (Optional) +# Label of major update targets. Default is [major] +# +# tagpr.minorLabels (Optional) +# Label of minor update targets. Default is [minor] +# +[tagpr] + vPrefix = true + releaseBranch = master + versionFile = - From c1319644e1915f207385975e1d26742cda724793 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 18 Sep 2024 05:31:49 +0000 Subject: [PATCH 2/2] [tagpr] update CHANGELOG.md --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..00e8cdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## [v0.0.6](https://github.com/budougumi0617/nrseg/compare/v0.0.5...v0.0.6) - 2024-09-18 +- refactoring by @budougumi0617 in https://github.com/budougumi0617/nrseg/pull/16 +- fix typos by @kdnakt in https://github.com/budougumi0617/nrseg/pull/19 +- Add support for import alias by @kdnakt in https://github.com/budougumi0617/nrseg/pull/18 +- fix: 🐛 Ensure identifier name length greater than zero by @mpyw in https://github.com/budougumi0617/nrseg/pull/21 +- test: add tests by @budougumi0617 in https://github.com/budougumi0617/nrseg/pull/22 +- ci: upgrade goreleaser and use tagpr by @budougumi0617 in https://github.com/budougumi0617/nrseg/pull/23 +- ci: generate token by GitHub App by @budougumi0617 in https://github.com/budougumi0617/nrseg/pull/24 +- ci: allow write by @budougumi0617 in https://github.com/budougumi0617/nrseg/pull/25 +- ci: allow write PR by @budougumi0617 in https://github.com/budougumi0617/nrseg/pull/26