diff options
author | Delan Azabani <dazabani@igalia.com> | 2024-09-17 22:45:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-17 14:45:09 +0000 |
commit | 25bce9f6b9b8dfa138044c45adc33c9c32bf5fba (patch) | |
tree | ba289a5d8d57e812147de2e5a394882d1f9954a6 /.github | |
parent | 7cbc5f6ee61102864528eed513e399f256b4e5cb (diff) | |
download | servo-25bce9f6b9b8dfa138044c45adc33c9c32bf5fba.tar.gz servo-25bce9f6b9b8dfa138044c45adc33c9c32bf5fba.zip |
CI: fix self-hosted runner timeout detection (#33471)
Signed-off-by: Delan Azabani <dazabani@igalia.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 2 | ||||
-rw-r--r-- | .github/workflows/self-hosted-runner-timeout.yml | 2 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 389356cbf95..a72d42490f3 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -79,7 +79,7 @@ jobs: uses: ./.github/workflows/self-hosted-runner-timeout.yml secrets: inherit with: - selected-runner-label: ${{ needs.runner-select.outputs.selected-runner-label }} + unique-id: ${{ needs.runner-select.outputs.unique-id }} is-self-hosted: ${{ fromJSON(needs.runner-select.outputs.is-self-hosted) }} build: diff --git a/.github/workflows/self-hosted-runner-timeout.yml b/.github/workflows/self-hosted-runner-timeout.yml index 24c4009ab2d..6c9785f122f 100644 --- a/.github/workflows/self-hosted-runner-timeout.yml +++ b/.github/workflows/self-hosted-runner-timeout.yml @@ -2,7 +2,7 @@ name: Detect Self-hosted Runner Timeout on: workflow_call: inputs: - selected-runner-label: + unique-id: required: true type: string is-self-hosted: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d4b6698eb56..67d62adaa16 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -60,7 +60,7 @@ jobs: uses: ./.github/workflows/self-hosted-runner-timeout.yml secrets: inherit with: - selected-runner-label: ${{ needs.runner-select.outputs.selected-runner-label }} + unique-id: ${{ needs.runner-select.outputs.unique-id }} is-self-hosted: ${{ fromJSON(needs.runner-select.outputs.is-self-hosted) }} build: |