Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2021-10-07 10:25:14 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2021-10-07 10:27:21 +0300
commit6cfc7f5dd3d2fc2370a7ba5fbe998b1822471170 (patch)
tree8488ef50fdc7870213d64ab256082e5e69987462 /.github
parent4408f1724fe9f381baa07c89816b35c25c6bdd9e (diff)
Reset composer for automated psalm baseline update
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/update-psalm-baseline.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/update-psalm-baseline.yml b/.github/workflows/update-psalm-baseline.yml
index 759a74a12d0..b74e9304b77 100644
--- a/.github/workflows/update-psalm-baseline.yml
+++ b/.github/workflows/update-psalm-baseline.yml
@@ -22,9 +22,13 @@ jobs:
extensions: ctype,curl,dom,fileinfo,gd,iconv,intl,json,mbstring,openssl,pdo_sqlite,posix,sqlite,xml,zip
coverage: none
- name: Composer install
- run: composer i
+ run: composer install
- name: Psalm
run: composer run psalm -- --monochrome --no-progress --output-format=text --update-baseline
+ - name: Reset composer
+ run: |
+ git clean -f lib/composer
+ git checkout composer.json composer.lock lib/composer
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with: