From 7034375cdd517ad6b581d8b6629b50305e894ac4 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Fri, 21 Jun 2024 06:42:24 -0400 Subject: [PATCH] chore(ci): only run semver checks if not labeled 'breaking' --- .github/workflows/ci-semver.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-semver.yml b/.github/workflows/ci-semver.yml index 6535c035f..979fc075f 100644 --- a/.github/workflows/ci-semver.yml +++ b/.github/workflows/ci-semver.yml @@ -14,7 +14,7 @@ jobs: test: needs: [get-leptos-changed] - if: needs.get-leptos-changed.outputs.leptos_changed == 'true' + if: needs.get-leptos-changed.outputs.leptos_changed == 'true' && github.event.pull_request.labels[0].name != 'breaking' name: Run semver check (nightly-2024-07-21) runs-on: ubuntu-latest