From 0de2d7bed8a36e0639da1d2ce6b733257c8c2dc9 Mon Sep 17 00:00:00 2001 From: Kushal Pal Date: Thu, 30 Oct 2025 15:20:53 +0530 Subject: [PATCH] Trigger CI on push and manual dispatch Enable CI on push to main and release branches Add manual trigger support Signed-off-by: Kushal Pal --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0487c2be..eec340f31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,11 @@ name: CI on: + push: # trigger CI on push to main and release branches + branches: + - main + - release/21.x + workflow_dispatch: # allows manual trigger from github UI pull_request: paths-ignore: - '.github/workflows/sanitize.yml'