From c18ac91813523cb3b7db5146176e39b6f490c1e1 Mon Sep 17 00:00:00 2001 From: Rd Date: Thu, 3 Oct 2024 18:39:54 +0530 Subject: [PATCH] Conditional execution of the wiki-deploy to only proceed if the event is push to the develop branch --- .github/workflows/wiki.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml index 40a80ffa5b8..1875e6154be 100644 --- a/.github/workflows/wiki.yml +++ b/.github/workflows/wiki.yml @@ -35,6 +35,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04] + if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }} steps: - uses: actions/checkout@v3 with: