From 85fcd862f4b304e56c85ba29317279671af7904c Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 2 Jun 2026 21:45:42 +0000 Subject: [PATCH 1/2] ci: update all workflow templates from organization template repository Signed-off-by: Nextcloud bot --- .github/workflows/block-unconventional-commits.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/block-unconventional-commits.yml b/.github/workflows/block-unconventional-commits.yml index a678771..3f91262 100644 --- a/.github/workflows/block-unconventional-commits.yml +++ b/.github/workflows/block-unconventional-commits.yml @@ -31,6 +31,6 @@ jobs: with: persist-credentials: false - - uses: webiny/action-conventional-commits@7f91b1595ca1951cdb671ddc9f07a49081ec5b69 # v1.4.2 + - uses: webiny/action-conventional-commits@faccb24fc2550dd15c0390d944379d2d8ed9690e # v1.3.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 73df18988db17236fbf7425844f07f52f95c938f Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 3 Jun 2026 13:45:45 +0200 Subject: [PATCH 2/2] fix(npm-build): adjust for libraries Signed-off-by: Ferdinand Thiessen --- workflow-templates/npm-build.yml | 33 ++------------------------------ 1 file changed, 2 insertions(+), 31 deletions(-) diff --git a/workflow-templates/npm-build.yml b/workflow-templates/npm-build.yml index 896bb7b..a9cf1eb 100644 --- a/workflow-templates/npm-build.yml +++ b/workflow-templates/npm-build.yml @@ -18,38 +18,9 @@ concurrency: cancel-in-progress: true jobs: - changes: - runs-on: ubuntu-latest-low - permissions: - contents: read - pull-requests: read - - outputs: - src: ${{ steps.changes.outputs.src}} - - steps: - - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 - id: changes - continue-on-error: true - with: - filters: | - src: - - '.github/workflows/**' - - 'src/**' - - 'appinfo/info.xml' - - 'package.json' - - 'package-lock.json' - - 'tsconfig.json' - - '**.js' - - '**.ts' - - '**.vue' - build: runs-on: ubuntu-latest - needs: changes - if: needs.changes.outputs.src != 'false' - name: NPM build steps: - name: Checkout @@ -101,7 +72,7 @@ jobs: permissions: contents: none runs-on: ubuntu-latest-low - needs: [changes, build] + needs: [build] if: always() @@ -110,4 +81,4 @@ jobs: steps: - name: Summary status - run: if ${{ needs.changes.outputs.src != 'false' && needs.build.result != 'success' }}; then exit 1; fi + run: if ${{ needs.build.result != 'success' }}; then exit 1; fi