From 472824040deeda3329113ac8b0486b5d8e3b24ac Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Fri, 14 Jul 2023 09:22:51 -0500 Subject: [PATCH] Removed push event handling in github actions workflow We don't have easy visibility on the results of these events which only occur after we merge pull requests. We use /merge refs in pull requests so running the actions again on push events (after the merge) don't really provide any additional information. Pushes/commits to pull requests are handled by the pull_request event so no change there. See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push Ticket: ENT-10428 Changelog: none (cherry picked from commit 81b49e7b0edec53133d16b9dbe0ac8dfba17a7b5) Conflicts: .github/workflows/ci.yml Different branches were mentioned in push event handling but we removed it entirely so no significant conflict. --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 672cd3c9f5..fcee8aac9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,13 +6,6 @@ on: pull_request: branches: [ master, 3.18.x, 3.15.x ] - # run this workflow on push/merge activity - # pull_request activity won't detect changes - # in the upstream branch before we merge - push: - branches: [ master, 3.18.x, 3.15.x ] - - jobs: unit_tests: uses: ./.github/workflows/unit_tests.yml