From 2cf3717cf748472be8c4731d53cd0b972cdcb869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brage=20Skj=C3=B8nborg?= Date: Sun, 4 Jan 2026 02:16:24 +0100 Subject: [PATCH] Runner4 --- .github/workflows/build-java-app.yml | 8 ++++++++ .github/workflows/build-python-app.yml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/.github/workflows/build-java-app.yml b/.github/workflows/build-java-app.yml index 8d76c8ce..8a437d7a 100644 --- a/.github/workflows/build-java-app.yml +++ b/.github/workflows/build-java-app.yml @@ -9,9 +9,17 @@ on: dockerTag: required: true type: string + enabled: + required: true + type: boolean + shouldBuild: + required: true + type: boolean + jobs: build-java: + if: ${{ inputs.enabled && inputs.shouldBuild }} runs-on: ubuntu-latest steps: diff --git a/.github/workflows/build-python-app.yml b/.github/workflows/build-python-app.yml index 06d7c2af..f942ea13 100644 --- a/.github/workflows/build-python-app.yml +++ b/.github/workflows/build-python-app.yml @@ -9,9 +9,17 @@ on: dockerTag: required: true type: string + enabled: + required: true + type: boolean + shouldBuild: + required: true + type: boolean + jobs: build-python: + if: ${{ inputs.enabled && inputs.shouldBuild }} runs-on: ubuntu-latest steps: