diff options
author | Simon L <szaimen@e.mail.de> | 2022-06-09 14:04:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 14:04:44 +0200 |
commit | 76db612b16380b20a3203bc0d3964733a6c1a587 (patch) | |
tree | f5ca7087b875482f2529a7cb98a3a6e1a90d488e | |
parent | dac93fe0485ecd15f6f74a9692e27cfb2549dfde (diff) | |
parent | 2af36577c5feffeb072301a858d7ece908a9e9a1 (diff) | |
download | nextcloud-server-76db612b16380b20a3203bc0d3964733a6c1a587.tar.gz nextcloud-server-76db612b16380b20a3203bc0d3964733a6c1a587.zip |
Merge pull request #32728 from kesselb/master
Add matrix for psalm baseline update job
-rw-r--r-- | .github/workflows/update-psalm-baseline.yml | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/.github/workflows/update-psalm-baseline.yml b/.github/workflows/update-psalm-baseline.yml index 9fdaeffe22c..5e699f623af 100644 --- a/.github/workflows/update-psalm-baseline.yml +++ b/.github/workflows/update-psalm-baseline.yml @@ -3,15 +3,23 @@ name: Update Psalm baseline on: workflow_dispatch: schedule: - - cron: '5 4 * * *' + - cron: "5 4 * * *" jobs: update-psalm-baseline: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + branches: ["master", "stable24", "stable23", "stable22"] + + name: update-psalm-baseline-${{ matrix.branches }} + steps: - uses: actions/checkout@v2 with: + ref: ${{ matrix.branches }} submodules: true - name: Set up php7.4 @@ -41,10 +49,8 @@ jobs: committer: GitHub <noreply@github.com> author: nextcloud-command <nextcloud-command@users.noreply.github.com> signoff: true - branch: automated/noid/psalm-baseline-update - # Make sure we can open multiple PRs - branch-suffix: timestamp - title: '[Automated] Update psalm-baseline.xml' + branch: automated/noid/${{ matrix.branches }}-update-psalm-baseline + title: "[${{ matrix.branches }}] Update psalm-baseline.xml" body: | Auto-generated update psalm-baseline.xml with fixed psalm warnings labels: | |