From fa429a6fcbe4d27fbeb35bf156b12c35d2a23fb5 Mon Sep 17 00:00:00 2001 From: exTerEX <30706568+exTerEX@users.noreply.github.com> Date: Sun, 4 Aug 2024 18:14:20 +0200 Subject: [PATCH] Added manual override for release github action --- .github/workflows/release.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6244329..7c39f67 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,6 +1,19 @@ name: "Release dev container features" on: workflow_dispatch: + inputs: + features: + description: "List of features to execute tests against" + required: true + default: "cmake ninja-build" + baseImage: + description: "Base image" + required: true + default: "ubuntu:focal" + logLevel: + description: "Log Level (info/debug/trace)" + required: true + default: "info" push: branches: - main