[github][actions] dont run actions for branches under wip/ path

This commit is contained in:
Travis Geiselbrecht
2025-07-09 23:39:16 -07:00
parent 07eb425744
commit ac65ad8429
2 changed files with 10 additions and 2 deletions

View File

@@ -2,7 +2,11 @@ name: LK CI (Clang)
# Brute force build a bunch of variants of LK in parallel jobs.
on: [ push, pull_request ]
on:
pull_request:
push:
branches-ignore:
- 'wip/**'
jobs:
build:

View File

@@ -2,7 +2,11 @@ name: LK CI (gcc)
# Brute force build a bunch of variants of LK in parallel jobs.
on: [ push, pull_request ]
on:
pull_request:
push:
branches-ignore:
- 'wip/**'
jobs:
build: