From 1d41e5db1a8743123f4dbfc2b2efd8f2f7a3d0d9 Mon Sep 17 00:00:00 2001 From: Nick Fields <46869826+nick-fields@users.noreply.github.com> Date: Tue, 26 Sep 2023 09:49:59 -0400 Subject: [PATCH] patch: also run workflow on merge to default --- .github/workflows/ci_cd.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 740a156..f6ac55c 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -1,9 +1,12 @@ name: CI/CD on: - # only on PRs into default branch + # only on PRs into and merge to default branch pull_request: branches: - master + push: + branches: + - master jobs: ci_unit: @@ -560,7 +563,7 @@ jobs: steps: - run: echo "If this is hit, all tests successfully passed" - # runs on merge to master only + # runs on merge to default only cd: name: Publish Action needs: [ci_all_tests_passed]