Skip to content

Commit ec1c9ea

Browse files
[release/v1.28.x-0.49bx] Prepare release 1.28.1/0.49b1 (#2985)
1 parent e4ab0d8 commit ec1c9ea

File tree

118 files changed

+287
-281
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+287
-281
lines changed

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/misc.yml.j2

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111

1212
env:
13-
CORE_REPO_SHA: b9240e73fb4a5c493a753cc9baa865e2d9a817a3
13+
CORE_REPO_SHA: main
1414
CONTRIB_REPO_SHA: main
1515
PIP_EXISTS_ACTION: w
1616

@@ -23,13 +23,17 @@ jobs:
2323
{%- if job_data == "generate-workflows" %}
2424
if: |
2525
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')
26-
&& github.actor != 'opentelemetrybot' && github.event_name == 'pull_request'
26+
&& github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
2727
{%- endif %}
2828
{%- if job_data == "public-symbols-check" %}
2929
if: |
3030
!contains(github.event.pull_request.labels.*.name, 'Approve Public API check')
3131
&& github.actor != 'opentelemetrybot' && github.event_name == 'pull_request'
3232
{%- endif %}
33+
{%- if job_data == "docs" %}
34+
if: |
35+
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
36+
{%- endif %}
3337
steps:
3438
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
3539
uses: actions/checkout@v4

.github/workflows/lint_0.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111

1212
env:
13-
CORE_REPO_SHA: main
13+
CORE_REPO_SHA: a1083d1667583773ade8f4f54e1d96b32c97ddf9
1414
CONTRIB_REPO_SHA: main
1515
PIP_EXISTS_ACTION: w
1616

.github/workflows/misc_0.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111

1212
env:
13-
CORE_REPO_SHA: main
13+
CORE_REPO_SHA: a1083d1667583773ade8f4f54e1d96b32c97ddf9
1414
CONTRIB_REPO_SHA: main
1515
PIP_EXISTS_ACTION: w
1616

@@ -55,6 +55,8 @@ jobs:
5555
docs:
5656
name: docs
5757
runs-on: ubuntu-latest
58+
if: |
59+
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
5860
steps:
5961
- name: Checkout repo @ SHA - ${{ github.sha }}
6062
uses: actions/checkout@v4
@@ -96,7 +98,7 @@ jobs:
9698
runs-on: ubuntu-latest
9799
if: |
98100
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')
99-
&& github.actor != 'opentelemetrybot' && github.event_name == 'pull_request'
101+
&& github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
100102
steps:
101103
- name: Checkout repo @ SHA - ${{ github.sha }}
102104
uses: actions/checkout@v4

.github/workflows/test_0.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111

1212
env:
13-
CORE_REPO_SHA: main
13+
CORE_REPO_SHA: a1083d1667583773ade8f4f54e1d96b32c97ddf9
1414
CONTRIB_REPO_SHA: main
1515
PIP_EXISTS_ACTION: w
1616

.github/workflows/test_1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111

1212
env:
13-
CORE_REPO_SHA: main
13+
CORE_REPO_SHA: a1083d1667583773ade8f4f54e1d96b32c97ddf9
1414
CONTRIB_REPO_SHA: main
1515
PIP_EXISTS_ACTION: w
1616

CHANGELOG.md

Lines changed: 1 addition & 1 deletion

_template/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.49b0"
15+
__version__ = "0.49b1"

eachdist.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sortfirst=
1616
ext/*
1717

1818
[stable]
19-
version=1.28.0
19+
version=1.28.1
2020

2121
packages=
2222
opentelemetry-sdk
@@ -34,7 +34,7 @@ packages=
3434
opentelemetry-api
3535

3636
[prerelease]
37-
version=0.49b0
37+
version=0.49b1
3838

3939
packages=
4040
all

exporter/opentelemetry-exporter-prometheus-remote-write/src/opentelemetry/exporter/prometheus_remote_write/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.49b0"
15+
__version__ = "0.49b1"

exporter/opentelemetry-exporter-richconsole/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
dependencies = [
2828
"opentelemetry-api ~= 1.12",
2929
"opentelemetry-sdk ~= 1.12",
30-
"opentelemetry-semantic-conventions == 0.49b0",
30+
"opentelemetry-semantic-conventions == 0.49b1",
3131
"rich>=10.0.0",
3232
]
3333

0 commit comments

Comments
 (0)