diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-09-30 18:05:05 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-09-30 17:05:19 +0000 |
commit | 64ff9cd2f326c808ecbf17f90f0f7e2368641fe7 (patch) | |
tree | e241e32bbd124147e613114ff4c45f7de09fecd9 | |
parent | 2bc11653e42de67c9f51eea00aa27f9c9f2e2d0a (diff) | |
download | nextcloud-server-backport/48466/stable30.tar.gz nextcloud-server-backport/48466/stable30.zip |
ci: fail psalm when baseline update requiredbackport/48466/stable30
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 63b7e947abd..83b7452ee89 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -38,7 +38,7 @@ jobs: - name: Show potential changes in Psalm baseline if: always() - run: git diff -- . ':!lib/composer' + run: git diff --exit-code -- . ':!lib/composer' - name: Upload Analysis results to GitHub if: always() @@ -100,4 +100,4 @@ jobs: - name: Show potential changes in Psalm baseline if: always() - run: git diff -- . ':!lib/composer' + run: git diff --exit-code -- . ':!lib/composer' |