]> source.dussan.org Git - nextcloud-server.git/commitdiff
Do not fail on changes to baseline.xml 23401/head
authorMorris Jobke <hey@morrisjobke.de>
Tue, 13 Oct 2020 19:55:37 +0000 (21:55 +0200)
committerGitHub <noreply@github.com>
Tue, 13 Oct 2020 19:55:37 +0000 (21:55 +0200)
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
.github/workflows/static-code-analysis.yml

index a7144193ae71ca3b6a734558fc5941d0fe55ad03..4bfd704793ea27af76c5e69a8b94b4e25b04adef 100644 (file)
@@ -23,7 +23,7 @@ jobs:
             - name: Psalm
               run: composer run psalm -- --monochrome --no-progress --output-format=text --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 )
             - name: Check diff
-              run: git diff -- . ':!lib/composer' && exit 1
+              run: git diff -- . ':!lib/composer'
             - name: Show potential changes in Psalm baseline
               run: |
                 bash -c "[[ ! \"`git status --porcelain build/psalm-baseline.xml`\" ]] || ( echo 'Uncommited changes in Psalm baseline' && git status && git diff build/psalm-baseline.xml)"