Skip to content

Commit

Permalink
Add workflow call inputs. See #276
Browse files Browse the repository at this point in the history
  • Loading branch information
kwk committed Feb 27, 2024
1 parent 468703a commit ffe3aa9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/testing-farm.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit ffe3aa9

Please sign in to comment.