diff --git a/.github/workflows/on_pull_request.yml b/.github/workflows/on_pull_request.yml index d5df679648c7..94e96ea3ed80 100644 --- a/.github/workflows/on_pull_request.yml +++ b/.github/workflows/on_pull_request.yml @@ -81,7 +81,7 @@ jobs: build-rerun_c-and-upload: name: "Build & Upload rerun_c (Linux x64)" - if: github.event.pull_request.head.repo.owner.login == 'rerun-io' + if: github.event.pull_request.head.repo.owner.login == 'rerun-io' && !contains(github.event.pull_request.labels.*.name, 'release') uses: ./.github/workflows/reusable_build_and_upload_rerun_c.yml with: CONCURRENCY: pr-${{ github.event.pull_request.number }} @@ -90,7 +90,7 @@ jobs: build-rerun-cli-and-upload: name: "Build & Upload rerun-cli (Linux x64)" - if: github.event.pull_request.head.repo.owner.login == 'rerun-io' + if: github.event.pull_request.head.repo.owner.login == 'rerun-io' && !contains(github.event.pull_request.labels.*.name, 'release') uses: ./.github/workflows/reusable_build_and_upload_rerun_cli.yml with: CONCURRENCY: pr-${{ github.event.pull_request.number }} @@ -99,6 +99,7 @@ jobs: bundle-and-upload-rerun_cpp: name: "Bundle and upload rerun_cpp_sdk.zip" + if: github.event.pull_request.head.repo.owner.login == 'rerun-io' && !contains(github.event.pull_request.labels.*.name, 'release') needs: [build-rerun_c-and-upload] uses: ./.github/workflows/reusable_bundle_and_upload_rerun_cpp.yml with: diff --git a/.github/workflows/reusable_publish_rerun_c.yml b/.github/workflows/reusable_publish_rerun_c.yml index 8acab8666958..40a10bf22606 100644 --- a/.github/workflows/reusable_publish_rerun_c.yml +++ b/.github/workflows/reusable_publish_rerun_c.yml @@ -1,4 +1,4 @@ -name: Build and publish wheels +name: Build and publish C++ SDK on: workflow_call: