From 79598371d8d3c9af4cfa6df53da3cf46ceff12e5 Mon Sep 17 00:00:00 2001 From: maxb-io <105273783+maxb-io@users.noreply.github.com> Date: Sun, 6 Aug 2023 10:35:32 +0300 Subject: [PATCH] 621 check history and license on pr (#626) * removed check for github.event_name before starting each step, this workflow is called only when the triegger is a PR * changes condition for running cehck license and history to pull_request_review --- .github/workflows/ci_pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_pipeline.yml b/.github/workflows/ci_pipeline.yml index da5c4ffd09..05d232a385 100644 --- a/.github/workflows/ci_pipeline.yml +++ b/.github/workflows/ci_pipeline.yml @@ -107,5 +107,5 @@ jobs: uses: ./.github/workflows/test_fuzz.yml Check-Licence-And-History: - if: ${{ github.event_name == 'pull_request' }} + if: ${{ github.event_name == 'pull_request_review' }} uses: ./.github/workflows/check_license_and_history.yml