We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7bb4fa commit 8743a0dCopy full SHA for 8743a0d
.github/workflows/reusable_integration-build.yml
@@ -80,7 +80,7 @@ on:
80
jobs:
81
integration-test:
82
name: Integration Test
83
- runs-on: ${{ inputs.repo_runner_labels && fromJSON(inputs.repo_runner_labels) || 'ubuntu-latest' }}
+ runs-on: ${{ (inputs.repo_runner_labels && startsWith(inputs.repo_runner_labels, '[') && fromJSON(inputs.repo_runner_labels)) || inputs.repo_runner_labels || (vars.REPO_RUNNER_LABELS && fromJSON(vars.REPO_RUNNER_LABELS)) || 'ubuntu-latest' }}
84
steps:
85
- name: Show disk space before build
86
run: |
0 commit comments