Skip to content

Commit 492e660

Browse files
authored
Merge pull request #6 from mackerelio/tagpr-from-v0.0.0
Release for v0.1.0
2 parents c630bf3 + 1d42af0 commit 492e660

File tree

4 files changed

+64
-1
lines changed

4 files changed

+64
-1
lines changed

.github/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- tagpr

.tagpr

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# config file for the tagpr in git config format
2+
# The tagpr generates the initial configuration, which you can rewrite to suit your environment.
3+
# CONFIGURATIONS:
4+
# tagpr.releaseBranch
5+
# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
6+
# creates or updates a pull request as a release candidate, or tags when they are merged.
7+
#
8+
# tagpr.versionFile
9+
# Versioning file containing the semantic version needed to be updated at release.
10+
# It will be synchronized with the "git tag".
11+
# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
12+
# Sometimes the source code file, such as version.go or Bar.pm, is used.
13+
# If you do not want to use versioning files but only git tags, specify the "-" string here.
14+
# You can specify multiple version files by comma separated strings.
15+
#
16+
# tagpr.vPrefix
17+
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
18+
# This is only a tagging convention, not how it is described in the version file.
19+
#
20+
# tagpr.changelog (Optional)
21+
# Flag whether or not changelog is added or changed during the release.
22+
#
23+
# tagpr.command (Optional)
24+
# Command to change files just before release and versioning.
25+
#
26+
# tagpr.postVersionCommand (Optional)
27+
# Command to change files just after versioning.
28+
#
29+
# tagpr.template (Optional)
30+
# Pull request template file in go template format
31+
#
32+
# tagpr.templateText (Optional)
33+
# Pull request template text in go template format
34+
#
35+
# tagpr.release (Optional)
36+
# GitHub Release creation behavior after tagging [true, draft, false]
37+
# If this value is not set, the release is to be created.
38+
#
39+
# tagpr.majorLabels (Optional)
40+
# Label of major update targets. Default is [major]
41+
#
42+
# tagpr.minorLabels (Optional)
43+
# Label of minor update targets. Default is [minor]
44+
#
45+
# tagpr.commitPrefix (Optional)
46+
# Prefix of commit message. Default is "[tagpr]"
47+
#
48+
[tagpr]
49+
vPrefix = true
50+
releaseBranch = main
51+
versionFile = distributions/otelcol-test/manifest.yaml

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [v0.1.0](https://github.com/mackerelio/opentelemetry-collector-mackerel/commits/v0.1.0) - 2025-10-16
4+
- feat: implements config for Mackerel OTLP Exporter by @Arthur1 in https://github.com/mackerelio/opentelemetry-collector-mackerel/pull/1
5+
- feat: Mackerel OTLP Exporter by @Arthur1 in https://github.com/mackerelio/opentelemetry-collector-mackerel/pull/2
6+
- docs: add README.md and LICENSE file by @Arthur1 in https://github.com/mackerelio/opentelemetry-collector-mackerel/pull/3
7+
- chore: use tagpr for release by @Arthur1 in https://github.com/mackerelio/opentelemetry-collector-mackerel/pull/4
8+
- chore: declare code owners by @Arthur1 in https://github.com/mackerelio/opentelemetry-collector-mackerel/pull/5

distributions/otelcol-test/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dist:
22
module: github.com/mackerelio/opentelemetry-collector-mackerel/distributions/otelcol-test
33
name: otelcol-mackerel-test
44
description: Mackerel Distro of OpenTelemetry Test Collector
5-
version: 0.0.0
5+
version: 0.1.0
66
output_path: ./_build
77

88
exporters:

0 commit comments

Comments
 (0)