From 99be1c780958da790e7a5aff86603616fde819d1 Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Wed, 29 Apr 2026 07:02:05 +0300 Subject: [PATCH] ci(verify-make-gen): limit push trigger to master (#8069) Currently triggered on any branch push in the repo. Signed-off-by: Ville Vesilehto --- .github/workflows/verify-make-gen.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/verify-make-gen.yml b/.github/workflows/verify-make-gen.yml index 5b4be4bbb..0a2fee556 100644 --- a/.github/workflows/verify-make-gen.yml +++ b/.github/workflows/verify-make-gen.yml @@ -1,5 +1,9 @@ name: Verify Generated Files -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: permissions: contents: read