Skip to content

Commit

Permalink
Add skip clause for Public API check (#2801)
Browse files Browse the repository at this point in the history
Fixes #2800
  • Loading branch information
ocelotl authored Aug 15, 2024
1 parent af9e841 commit e7f647e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')
&& github.actor != 'opentelemetrybot'
{%- endif %}
{%- if job_data == "public-symbols-check" %}
if: |
!contains(github.event.pull_request.labels.*.name, 'Approve Public API check')
&& github.actor != 'opentelemetrybot'
{%- endif %}
steps:
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
uses: actions/checkout@v4
Expand Down

0 comments on commit e7f647e

Please sign in to comment.