diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2023-05-25 13:52:03 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-05-25 13:57:17 +0200 |
commit | f5a5ce8822e9add9627ecb6ea289c8de2b8a76a9 (patch) | |
tree | 8db3d80793c8e4813320bed0ae84f90a8851b4a0 /.github/workflows/kernel.yml | |
parent | 3591353f5143fc46e31f921484177a9d6f1089a2 (diff) |
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 <ansuelsmth@gmail.com>
Diffstat (limited to '.github/workflows/kernel.yml')
-rw-r--r-- | .github/workflows/kernel.yml | 2 |
1 files changed, 2 insertions, 0 deletions
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 |