From 5e9c67160df82c65c36ee01f8fd7b4de42617a83 Mon Sep 17 00:00:00 2001 From: Soeren Apel Date: Thu, 22 Aug 2024 23:26:40 +0200 Subject: [PATCH] build.yml: Add missing runners --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8f2af54..2eaf8c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,7 @@ jobs: name: Create pending status # Run this only for pull requests if: (github.event == pull_request) + runs-on: ubuntu-latest steps: - name: Get PR hash @@ -52,8 +53,9 @@ jobs: if: | always() && # Workaround, see https://github.com/actions/runner/issues/491#issuecomment-850884422 (github.event == pull_request) && - !contains(needs.*.result, 'cancelled') && - !contains(needs.*.result, 'failure') + (!contains(needs.*.result, 'cancelled')) && + (!contains(needs.*.result, 'failure')) + runs-on: ubuntu-latest steps: - name: Get PR hash @@ -91,6 +93,7 @@ jobs: always() && # Workaround, see https://github.com/actions/runner/issues/491#issuecomment-850884422 (github.event == pull_request) && (contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'failure')) + runs-on: ubuntu-latest steps: - name: Get PR hash