Skip to content

Commit c211f78

Browse files
authored
Merge branch 'main' into release_skywalking_encoding
2 parents 574a536 + d7ab068 commit c211f78

27 files changed

+150
-46
lines changed

.chloggen/remove_opencensus.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: breaking
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: otelcol
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Remove deprecated opencensus exporter and receiver
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: [1056]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# Optional: The change log or logs in which this entry should be included.
21+
# e.g. '[user]' or '[user, api]'
22+
# Include 'user' if the change is relevant to end users.
23+
# Include 'api' if there is a change to a library API.
24+
# Default: '[user]'
25+
change_logs: []
26+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: breaking
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: otelcol-contrib
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Remove deprecated opencensus exporter and receiver
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: [1056]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# Optional: The change log or logs in which this entry should be included.
21+
# e.g. '[user]' or '[user, api]'
22+
# Include 'user' if the change is relevant to end users.
23+
# Include 'api' if there is a change to a library API.
24+
# Default: '[user]'
25+
change_logs: []
26+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Use this changelog template to create an entry for release notes.
2+
3+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
4+
change_type: breaking
5+
6+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
7+
component: otelcol-k8s
8+
9+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
10+
note: Remove deprecated opencensus exporter and receiver
11+
12+
# One or more tracking issues or pull requests related to the change
13+
issues: [1056]
14+
15+
# (Optional) One or more lines of additional information to render under the primary note.
16+
# These lines will be padded with 2 spaces and then inserted directly into the document.
17+
# Use pipe (|) for multiline entries.
18+
subtext:
19+
20+
# Optional: The change log or logs in which this entry should be included.
21+
# e.g. '[user]' or '[user, api]'
22+
# Include 'user' if the change is relevant to end users.
23+
# Include 'api' if there is a change to a library API.
24+
# Default: '[user]'
25+
change_logs: []
26+

.github/workflows/changelog.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
types: [opened, synchronize, reopened, labeled, unlabeled]
1111
branches:
1212
- main
13+
- release/*
1314

1415
env:
1516
# Make sure to exit early if cache segment download times out after 2 minutes.

.github/workflows/ci-builder.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: CI - Builder
33
on:
44
merge_group:
55
push:
6-
branches: [main]
6+
branches:
7+
- main
8+
- release/*
79
paths:
810
- "distributions/otelcol-contrib/**"
911
- "cmd/**"
@@ -13,7 +15,9 @@ on:
1315
- "go.mod"
1416
- "go.sum"
1517
pull_request:
16-
branches: [main]
18+
branches:
19+
- main
20+
- release/*
1721
paths:
1822
- "distributions/otelcol-contrib/**"
1923
- "cmd/**"

.github/workflows/ci-goreleaser-contrib.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: CI - Contrib - GoReleaser
33
on:
44
merge_group:
55
push:
6-
branches: [main]
6+
branches:
7+
- main
8+
- release/*
79
paths:
810
- "distributions/otelcol-contrib/**"
911
- "cmd/**"
@@ -13,7 +15,9 @@ on:
1315
- "go.mod"
1416
- "go.sum"
1517
pull_request:
16-
branches: [main]
18+
branches:
19+
- main
20+
- release/*
1721
paths:
1822
- "distributions/otelcol-contrib/**"
1923
- "cmd/**"

.github/workflows/ci-goreleaser-core.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: CI - Core - GoReleaser
33
on:
44
merge_group:
55
push:
6-
branches: [main]
6+
branches:
7+
- main
8+
- release/*
79
paths:
810
- "distributions/otelcol/**"
911
- "cmd/**"
@@ -13,7 +15,9 @@ on:
1315
- "go.mod"
1416
- "go.sum"
1517
pull_request:
16-
branches: [main]
18+
branches:
19+
- main
20+
- release/*
1721
paths:
1822
- "distributions/otelcol/**"
1923
- "cmd/**"

.github/workflows/ci-goreleaser-ebpf-profiler.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: CI - eBPF Profiler - GoReleaser
33
on:
44
merge_group:
55
push:
6-
branches: [main]
6+
branches:
7+
- main
8+
- release/*
79
paths:
810
- "distributions/otelcol-ebpf-profiler/**"
911
- "cmd/**"
@@ -13,7 +15,9 @@ on:
1315
- "go.mod"
1416
- "go.sum"
1517
pull_request:
16-
branches: [main]
18+
branches:
19+
- main
20+
- release/*
1721
paths:
1822
- "distributions/otelcol-ebpf-profiler/**"
1923
- "cmd/**"

.github/workflows/ci-goreleaser-k8s.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: CI - k8s - GoReleaser
33
on:
44
merge_group:
55
push:
6-
branches: [main]
6+
branches:
7+
- main
8+
- release/*
79
paths:
810
- "distributions/otelcol-k8s/**"
911
- "cmd/**"
@@ -13,7 +15,9 @@ on:
1315
- "go.mod"
1416
- "go.sum"
1517
pull_request:
16-
branches: [main]
18+
branches:
19+
- main
20+
- release/*
1721
paths:
1822
- "distributions/otelcol-k8s/**"
1923
- "cmd/**"

.github/workflows/ci-goreleaser-otlp.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: CI - OTLP - GoReleaser
33
on:
44
merge_group:
55
push:
6-
branches: [main]
6+
branches:
7+
- main
8+
- release/*
79
paths:
810
- "distributions/otelcol-otlp/**"
911
- "cmd/**"
@@ -13,7 +15,9 @@ on:
1315
- "go.mod"
1416
- "go.sum"
1517
pull_request:
16-
branches: [main]
18+
branches:
19+
- main
20+
- release/*
1721
paths:
1822
- "distributions/otelcol-otlp/**"
1923
- "cmd/**"

0 commit comments

Comments
 (0)