[github][actions] dont run actions for branches under wip/ path
This commit is contained in:
6
.github/workflows/github-ci-clang.yml
vendored
6
.github/workflows/github-ci-clang.yml
vendored
@@ -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:
|
||||
|
||||
6
.github/workflows/github-ci.yml
vendored
6
.github/workflows/github-ci.yml
vendored
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user