Skip to content

Commit

Permalink
Merge pull request #8 from johnmanjiro13/tagpr-from-v0.1.0
Browse files Browse the repository at this point in the history
Release for v0.1.1
  • Loading branch information
johnmanjiro13 committed Jun 8, 2023
2 parents b9d61ce + a63a0c6 commit be7db5d
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
exclude:
labels:
- tagpr
42 changes: 42 additions & 0 deletions .tagpr
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 = README.md
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## [v0.1.1](https://github.com/johnmanjiro13/auto-reviewer-assign/compare/v0.1.0...v0.1.1) - 2023-06-08
- feat: Introduce eslint and prettier by @johnmanjiro13 in https://github.com/johnmanjiro13/auto-reviewer-assign/pull/1
- fix: typo by @johnmanjiro13 in https://github.com/johnmanjiro13/auto-reviewer-assign/pull/3
- Configure Renovate by @renovate in https://github.com/johnmanjiro13/auto-reviewer-assign/pull/2
- chore(deps): update node.js to v16.20.0 by @renovate in https://github.com/johnmanjiro13/auto-reviewer-assign/pull/4
- feat: Introduce tagpr by @johnmanjiro13 in https://github.com/johnmanjiro13/auto-reviewer-assign/pull/7

## [v0.1.0](https://github.com/johnmanjiro13/auto-reviewer-assign/commits/v0.1.0) - 2023-06-07
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: johnmanjiro13/auto-reviewer-assign@v0.1.0
- uses: johnmanjiro13/auto-reviewer-assign@v0.1.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
```

0 comments on commit be7db5d

Please sign in to comment.