-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [tagpr] prepare for the next release * [tagpr] update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
9bd113f
commit 8b221d8
Showing
3 changed files
with
56 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,4 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- tagpr |
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,10 @@ | ||
# Changelog | ||
|
||
## [v0.0.1](https://github.com/danny-molnar/taskwarden/commits/v0.0.1) - 2024-08-30 | ||
- feat: New project structure and initial helloworld by @danny-molnar in https://github.com/danny-molnar/taskwarden/pull/1 | ||
- ci: Added GH Workflow for running go tests by @danny-molnar in https://github.com/danny-molnar/taskwarden/pull/2 | ||
- chore: Added MIT License to the repo by @danny-molnar in https://github.com/danny-molnar/taskwarden/pull/3 | ||
- cd: Added new workflow to create new release on PR to main by @danny-molnar in https://github.com/danny-molnar/taskwarden/pull/4 | ||
- fix: broken go mod versioning by @danny-molnar in https://github.com/danny-molnar/taskwarden/pull/5 | ||
- Fix: go version and workflow namings by @danny-molnar in https://github.com/danny-molnar/taskwarden/pull/6 | ||
- fix: CD workflow now has permissions to write by @danny-molnar in https://github.com/danny-molnar/taskwarden/pull/7 |