From b8d823bc5ae354e2b2e2572811dba8e774c128c1 Mon Sep 17 00:00:00 2001 From: Nils Werner Date: Fri, 20 Feb 2026 10:03:22 +0100 Subject: [PATCH] Add `generate-summary` input to build-maven action Co-Authored-By: Claude Opus 4.6 --- build-maven/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-maven/action.yml b/build-maven/action.yml index d00113b0..7d29f255 100644 --- a/build-maven/action.yml +++ b/build-maven/action.yml @@ -72,6 +72,9 @@ inputs: mixed-privacy: description: Whether the repository contains both public and private modules default: 'false' + generate-summary: + description: Whether to generate a workflow summary after the build. + default: 'true' outputs: project-version: @@ -230,7 +233,7 @@ runs: show-summary: true - name: Generate workflow summary - if: always() + if: always() && inputs.generate-summary != 'false' shell: bash run: | build_name="${GITHUB_REPOSITORY#*/}"