From ffe3aa9c5a322caabfe719065c54eebfc0c59d5a Mon Sep 17 00:00:00 2001 From: Konrad Kleine Date: Tue, 27 Feb 2024 16:31:45 +0100 Subject: [PATCH] Add workflow call inputs. See #276 --- .github/workflows/testing-farm.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/testing-farm.yml b/.github/workflows/testing-farm.yml index 9d0d3587..a6167977 100644 --- a/.github/workflows/testing-farm.yml +++ b/.github/workflows/testing-farm.yml @@ -1,6 +1,34 @@ name: "testing-farm" on: + workflow_call: + inputs: + yyyymmdd: + description: 'YYYMMDD (e.g. 20240220)' + default: 'today' + required: true + type: string + os-version: + description: 'OS version (e.g. fedora-rawhide-x86_64)' + default: 'all' + required: true + type: string + strategy: + description: 'Build strategy' + default: 'all' + required: true + type: string + force-test: + description: 'Force re-running test if it already ran' + default: false + required: true + type: boolean + dry-run: + description: 'Do not submit request to testing-farm, just print it' + default: true + required: true + type: boolean + workflow_dispatch: inputs: yyyymmdd: