From 26055d47793893f1e13f131891cefcc6e7854b93 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 10 Oct 2025 08:58:39 +0200 Subject: [PATCH] fix: Bye stable30 Signed-off-by: Joas Schilling --- workflow-templates/npm-audit-fix.yml | 1 - workflow-templates/update-nextcloud-ocp.yml | 7 +++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/workflow-templates/npm-audit-fix.yml b/workflow-templates/npm-audit-fix.yml index 50da0fe..031a560 100644 --- a/workflow-templates/npm-audit-fix.yml +++ b/workflow-templates/npm-audit-fix.yml @@ -28,7 +28,6 @@ jobs: - ${{ github.event.repository.default_branch }} - 'stable32' - 'stable31' - - 'stable30' name: npm-audit-fix-${{ matrix.branches }} diff --git a/workflow-templates/update-nextcloud-ocp.yml b/workflow-templates/update-nextcloud-ocp.yml index 1cb5219..673d152 100644 --- a/workflow-templates/update-nextcloud-ocp.yml +++ b/workflow-templates/update-nextcloud-ocp.yml @@ -24,7 +24,10 @@ jobs: strategy: fail-fast: false matrix: - branches: ['main', 'master', 'stable32', 'stable31', 'stable30'] + branches: + - ${{ github.event.repository.default_branch }} + - 'stable32' + - 'stable31' name: update-nextcloud-ocp-${{ matrix.branches }} @@ -59,7 +62,7 @@ jobs: if: steps.checkout.outcome == 'success' run: composer install - - name: Composer update nextcloud/ocp + - name: Composer update nextcloud/ocp # zizmor: ignore[template-injection] id: update_branch if: ${{ steps.checkout.outcome == 'success' && matrix.branches != 'main' }} run: composer require --dev 'nextcloud/ocp:dev-${{ matrix.branches }}'