diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-10-13 21:55:37 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-10-16 13:17:19 +0200 |
commit | 7054159cda76a58c0e6f07ccadbbcc5bc045514b (patch) | |
tree | dd1b1d5a89d1d7f1579ff151a2464608acc709c5 /.github | |
parent | 8c9fe98446c200648274aa60dde73fcc96dc5365 (diff) | |
download | nextcloud-server-7054159cda76a58c0e6f07ccadbbcc5bc045514b.tar.gz nextcloud-server-7054159cda76a58c0e6f07ccadbbcc5bc045514b.zip |
Do not fail on changes to baseline.xml
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index a7144193ae7..4bfd704793e 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -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)" |