FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Unverified Commit f32e9262 authored by Massimiliano Favaro-Bedford's avatar Massimiliano Favaro-Bedford Committed by GitHub
Browse files

Make runs-on a variable (#1479)

Set runs-on to accept variables for when sharing workflow.
parent 345d9e43
No related branches found
No related tags found
1 merge request!523Caracal changes staging
......@@ -7,6 +7,11 @@ name: All in one
on:
workflow_call:
inputs:
runner:
required: false
type: string
description: 'Runner name'
default: 'arc-skc-aio-runner'
kayobe_image:
description: Kayobe container image
type: string
......@@ -86,7 +91,7 @@ jobs:
all-in-one:
name: All in one
if: ${{ inputs.if && !cancelled() }}
runs-on: arc-skc-aio-runner
runs-on: ${{ inputs.runner }}
permissions: {}
env:
KAYOBE_ENVIRONMENT: ci-aio
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment