From f5a5ce8822e9add9627ecb6ea289c8de2b8a76a9 Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Thu, 25 May 2023 13:52:03 +0200 Subject: CI: ignore master branch for push events Due to problem with migrating from master to main as the default branch and downstream project still requiring the master branch to be present, we currently have for push events double CI runs, one for main and one for master. To solve this ignore any push event to the master branch for every workflow that react on push events. Signed-off-by: Christian Marangi --- .github/workflows/kernel.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows/kernel.yml') diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index b918b2d88e..6be7ef28c2 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -17,6 +17,8 @@ on: - 'include/kernel*' - 'package/kernel/**' - 'target/linux/**' + branches-ignore: + - master permissions: contents: read -- cgit v1.2.3