flatcar-scripts/.github/workflows/dispatch-kola-tests.yaml
Gabriel Adrian Samfira 6eabd91a04
Remove customizations for now
Remove arch and parallel options. Hardcode them for now.
2022-07-12 02:48:42 +03:00

27 lines
692 B
YAML

name: Dispatch kola tests
on:
workflow_dispatch:
inputs:
workflow_name_or_id:
type: string
required: true
default: ci.yaml
description: |
The workflow ID from where we'll download the artifacts to be tested.
workflow_run_id:
type: string
required: true
description: |
The run ID of the workflow specified in workflow_name_or_id
permissions: {}
jobs:
test:
name: "Trigger kola test - test"
uses: ./.github/workflows/run-kola-tests.yaml
with:
workflow_name_or_id: ${{ github.event.inputs.workflow_name_or_id }}
workflow_run_id: ${{ github.event.inputs.workflow_run_id }}