From 2f277b77e78e4f8fbf7f5c480893251e59a10395 Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Wed, 25 Sep 2024 10:19:15 +0100 Subject: [PATCH] BUG: Changed workflow if to master If conditional was based on main branch but this repo uses master --- .github/workflows/cloud_chatops.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cloud_chatops.yaml b/.github/workflows/cloud_chatops.yaml index a8e03ef..4140ad5 100644 --- a/.github/workflows/cloud_chatops.yaml +++ b/.github/workflows/cloud_chatops.yaml @@ -83,7 +83,7 @@ jobs: push_prod_image_harbor: runs-on: ubuntu-latest needs: test_and_lint - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v4