From 1d35cad3ceebc7c0d7dbce3f0e022a510187bfd0 Mon Sep 17 00:00:00 2001 From: Marcin Procyk Date: Tue, 12 Mar 2024 13:52:25 +0100 Subject: [PATCH] chore: Successfully skip `check-formatting` job on release PRs (#3113) --- .github/workflows/build-and-test-empty.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build-and-test-empty.yml b/.github/workflows/build-and-test-empty.yml index 654ca0a74a..881a56e309 100644 --- a/.github/workflows/build-and-test-empty.yml +++ b/.github/workflows/build-and-test-empty.yml @@ -7,6 +7,15 @@ on: - "release-*" jobs: + check-formatting: + name: Check formatting + runs-on: ubuntu-latest + steps: + - name: Skip with success + run: | + echo "skipped" + exit 0 + build-and-test: name: Build and test runs-on: ubuntu-latest