From 831d990ef72f99b6e67b54d7e89fb17bbce9429a Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Mon, 20 Apr 2026 19:37:46 +0700 Subject: [PATCH] fix(release): avoid notes sync create races --- .github/workflows/release-notes-sync.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release-notes-sync.yml b/.github/workflows/release-notes-sync.yml index 583dad9e1..5288e61b3 100644 --- a/.github/workflows/release-notes-sync.yml +++ b/.github/workflows/release-notes-sync.yml @@ -54,9 +54,7 @@ jobs: fi create_if_missing="false" - if [ "$EVENT_NAME" = "push" ] && [[ "$REF" == refs/tags/v* ]]; then - create_if_missing="true" - elif [ "$EVENT_NAME" = "workflow_dispatch" ] && [ "${INPUT_CREATE_IF_MISSING:-false}" = "true" ]; then + if [ "$EVENT_NAME" = "workflow_dispatch" ] && [ "${INPUT_CREATE_IF_MISSING:-false}" = "true" ]; then create_if_missing="true" fi