Skip to content

Commit

Permalink
feat: Add runner scale set as an option to build on
Browse files Browse the repository at this point in the history
The default is set to the small graph builder pipeline.
  • Loading branch information
MichaelsJP committed Aug 26, 2023
1 parent ac35378 commit 9246243
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build_graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,19 @@ on:
required: false
type: boolean
default: true
runner-scale-set:
description: "Chose the runer scale set to use"
required: true
type: choice
default: graph-builder-small
options:
- graph-builder-small
- graph-builder-medium
- graph-builder-large

jobs:
build-graph:
runs-on: ["graph-builder-small*"]
runs-on: ${{ github.event.inputs.runner-scale-set }}
environment: ${{ inputs.environment }}
steps:
- name: Checkout repository
Expand Down

0 comments on commit 9246243

Please sign in to comment.