We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 913800e commit df1ea99Copy full SHA for df1ea99
.github/workflows/select-runner.yml
@@ -38,3 +38,13 @@ jobs:
38
outputs:
39
matrix1: ${{ toJSON( fromJSON(inputs.matrices)[1] ) }}
40
matrix2: ${{ toJSON( fromJSON(inputs.matrices)[2] ) }}
41
+
42
+ wakeup:
43
+ name: Wake up self-hosted runner
44
+ if: ${{ inputs.enabled }}
45
+ needs: [select]
46
+ runs-on: ${{ inputs.bastion-host }}
47
+ concurrency: ${{ needs.select.outputs.matrix1 }}
48
+ steps:
49
+ - uses: actions/checkout@v4
50
+ - run: .github/ciChecksScripts/wakeUpRunner.sh
0 commit comments