From adaaa0cbd3e314a93b4b4d167bfcdc0a75f7a33e Mon Sep 17 00:00:00 2001 From: Jamil Date: Tue, 11 Jun 2024 23:15:57 -0500 Subject: [PATCH] ci: fix release drafter call conditional (#5333) https://github.com/actions/runner/discussions/1884 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c17aa9151..8c971383a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,8 @@ jobs: config_name: release-drafter-gui-client.yml steps: - uses: release-drafter/release-drafter@v6 - if: github.event_name == 'workflow_call' + # workflow_call event is named workflow_dispatch + if: ${{ github.event_name == 'workflow_dispatch' }} id: update-release-draft with: config-name: ${{ matrix.config_name }}