From c659bbe8f899fe1015a115be9f2e7a4da26c5dd3 Mon Sep 17 00:00:00 2001 From: eric <1176427+EricWF@users.noreply.github.com> Date: Tue, 28 Nov 2023 15:39:22 -0500 Subject: [PATCH] changes --- .github/workflows/callable.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/callable.yaml b/.github/workflows/callable.yaml index efa09df..3d6dc07 100644 --- a/.github/workflows/callable.yaml +++ b/.github/workflows/callable.yaml @@ -26,9 +26,6 @@ on: -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number }} - cancel-in-progress: true env: @@ -46,7 +43,7 @@ env: jobs: stage1: - if: github.repository_owner == 'llvm' && ${{ contains(github.event.inputs.run_stages, 1) }} + if: ${{ contains(inputs.run_stages, 1) }} runs-on: rizzo-runner-64-set continue-on-error: false strategy: @@ -87,7 +84,7 @@ jobs: **/CMakeOutput.log **/crash_diagnostics/* stage2: - if: github.repository_owner == 'llvm' && ${{ contains(github.event.inputs.run_stages, 2) }} + if: ${{ contains(github.event.inputs.run_stages, 2) }} runs-on: rizzo-runner-64-set needs: [ stage1 ] continue-on-error: false @@ -136,7 +133,7 @@ jobs: **/CMakeOutput.log **/crash_diagnostics/* stage3: - if: github.repository_owner == 'llvm' && ${{ contains(github.event.inputs.run_stages, 3) }} + if: ${{ contains(github.event.inputs.run_stages, 3) }} needs: [ stage1, stage2 ] continue-on-error: false strategy: