Skip to content

Commit 974c8a0

Browse files
committed
Add skip clause for Public API check
Fixes open-telemetry#2800
1 parent af9e841 commit 974c8a0

File tree

1 file changed

+5
-0
lines changed
  • .github/workflows/generate_workflows_lib/src/generate_workflows_lib

1 file changed

+5
-0
lines changed

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

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')
2626
&& github.actor != 'opentelemetrybot'
2727
{%- endif %}
28+
{%- if job_data == "public-symbols-check" %}
29+
if: |
30+
!contains(github.event.pull_request.labels.*.name, 'Approve Public API check')
31+
&& github.actor != 'opentelemetrybot'
32+
{%- endif %}
2833
steps:
2934
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
3035
uses: actions/checkout@v4

0 commit comments

Comments
 (0)