From 903e9aee7ae6549db591f554cee07c1ace67bf57 Mon Sep 17 00:00:00 2001 From: xingyuan li <108672484+hoshibara@users.noreply.github.com> Date: Fri, 14 Jul 2023 16:12:21 +0900 Subject: [PATCH] Fix the problem of workflow cancellation after pr merge (#8530) * remove concurrency group for llm binary build workflow --- .github/workflows/llm-binary-build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/llm-binary-build.yml b/.github/workflows/llm-binary-build.yml index 42925a32..c00bd3a8 100644 --- a/.github/workflows/llm-binary-build.yml +++ b/.github/workflows/llm-binary-build.yml @@ -1,13 +1,12 @@ name: LLM Binary Build -# Cancel previous runs in the PR when you push new commits -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} - cancel-in-progress: true - # Controls when the action will run. on: # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: [main] + paths: + - ".github/workflows/llm-binary-build.yml" pull_request: branches: [main] paths: