From 312f7ca89728de0c800bad527dbe61881bcd109f Mon Sep 17 00:00:00 2001 From: Shiv Verma Date: Thu, 26 Feb 2026 11:51:40 +0530 Subject: [PATCH] ci: enable ci to run for pull requests from all branches Signed-off-by: Shiv Verma --- .github/workflows/ci.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ff57b5d75e..cc9a057c60 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,10 @@ name: ci -on: [pull_request] # yamllint disable-line rule:truthy +on: # yamllint disable-line rule:truthy + push: + branches: + - main + pull_request: # yamllint disable-line rule:empty-values concurrency: group: ${{ github.workflow }}-${{ github.event.pull-request.number || github.ref }}