This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch include-option in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git
commit 480a0646bf4a34beb85a73fcdf57ff9f10cc2443 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Mon Oct 2 17:15:09 2023 +0200 Add option to include ad-hoc jdks to testing matrix --- .github/workflows/maven-verify.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index f38f5c0..e9b7dcc 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -50,6 +50,12 @@ on: default: '[ "3.9.4" ]' type: string + matrix-include: + description: include for matrix as json + required: false + default: '[]' + type: string + matrix-exclude: description: exclude for matrix as json required: false @@ -225,6 +231,7 @@ jobs: jdk: ${{ fromJSON( inputs.jdk-matrix ) }} distribution: ${{ fromJSON( inputs.jdk-distribution-matrix ) }} maven: ${{ fromJSON( inputs.maven-matrix ) }} + include: ${{ fromJSON( inputs.matrix-include ) }} exclude: ${{ fromJSON( inputs.matrix-exclude ) }} max-parallel: ${{ inputs.max-parallel }}
