-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from route06/tagpr-from-v2.0.1
Release for v2.0.2
- Loading branch information
Showing
3 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- tagpr | ||
categories: | ||
- title: "Breaking Changes :hammer_and_wrench:" | ||
labels: | ||
- breaking-change | ||
- title: "New Features :tada:" | ||
labels: | ||
- enhancement | ||
- title: "Fix bug :bug:" | ||
labels: | ||
- bug | ||
- title: "Update modules :up:" | ||
labels: | ||
- dependencies | ||
- title: "Other Changes" | ||
labels: | ||
- "*" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 = main | ||
versionFile = - |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Changelog | ||
|
||
## [v2.0.2](https://github.com/route06/actions/compare/v2.0.1...v2.0.2) - 2024-05-21 | ||
- Introduce tagpr for automatic release by @masutaka in https://github.com/route06/actions/pull/20 | ||
- Release 時に v2 等の git tag が最新の v2.Y.Z を指すように書き換える by @masutaka in https://github.com/route06/actions/pull/22 | ||
|
||
## [v2.0.1](https://github.com/route06/actions/compare/v2.0.0...v2.0.1) - 2024-05-17 | ||
- build(deps): bump ls-lint/action from 2.2.2 to 2.2.3 by @dependabot in https://github.com/route06/actions/pull/18 | ||
- Fix permissions of add_assignee_to_pr.yml by @masutaka in https://github.com/route06/actions/pull/19 | ||
|
||
## [v2.0.0](https://github.com/route06/actions/compare/v2.0.0...v2) - 2024-05-17 | ||
- build(deps): bump ls-lint/action from 2.2.2 to 2.2.3 by @dependabot in https://github.com/route06/actions/pull/18 | ||
- Fix permissions of add_assignee_to_pr.yml by @masutaka in https://github.com/route06/actions/pull/19 | ||
|
||
## [v2.0.0](https://github.com/route06/actions/compare/v1...v2.0.0) - 2024-01-24 | ||
- Upgrade README.md by @masutaka in https://github.com/route06/actions/pull/14 | ||
- feat: add get-last-discussion-url workflow by @MH4GF in https://github.com/route06/actions/pull/12 | ||
- feat!: ワークフローの命名規則をsnake_caseに変更 by @MH4GF in https://github.com/route06/actions/pull/15 | ||
- v2 に向けた調整 by @masutaka in https://github.com/route06/actions/pull/17 | ||
|
||
## [v1.1.0](https://github.com/route06/actions/compare/v1.0.0...v1.1.0) - 2024-01-19 | ||
- feat: add gh-discussion-comment-to-slack workflow by @MH4GF in https://github.com/route06/actions/pull/13 | ||
|
||
## [v1.0.0](https://github.com/route06/actions/compare/v1.0.0...v1) - 2024-01-19 | ||
- feat: add gh-discussion-comment-to-slack workflow by @MH4GF in https://github.com/route06/actions/pull/13 | ||
|
||
## [v1.0.0](https://github.com/route06/actions/commits/v1.0.0) - 2024-01-17 | ||
- feat: PRにassigneeを追加するreusable workflowを追加 by @MH4GF in https://github.com/route06/actions/pull/1 | ||
- fix: reusable workflowは、.github/workflows/ に配置する必要があるため修正 by @MH4GF in https://github.com/route06/actions/pull/3 | ||
- feat: Slack通知を行うワークフローを追加 by @MH4GF in https://github.com/route06/actions/pull/2 | ||
- feat: CODEOWNERS ファイルを設定 by @MH4GF in https://github.com/route06/actions/pull/5 | ||
- maintenance: ADRを書けるようにする by @MH4GF in https://github.com/route06/actions/pull/9 | ||
- Introduce dependabot by @masutaka in https://github.com/route06/actions/pull/10 | ||
- docs: セマンティックバージョニングについてのADRを追加 by @MH4GF in https://github.com/route06/actions/pull/11 |