ci: exclude commits from own repo
This commit is contained in:
parent
bfa6d974ec
commit
0bfacc536a
4 changed files with 16 additions and 4 deletions
5
.github/workflows/lint.yaml
vendored
5
.github/workflows/lint.yaml
vendored
|
@ -1,6 +1,9 @@
|
|||
name: Lint
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [master, develop]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
5
.github/workflows/linux-musl.yaml
vendored
5
.github/workflows/linux-musl.yaml
vendored
|
@ -1,6 +1,9 @@
|
|||
name: Musl
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [master, develop]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
5
.github/workflows/napi3.yaml
vendored
5
.github/workflows/napi3.yaml
vendored
|
@ -1,6 +1,9 @@
|
|||
name: Linux-N-API-3
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [master, develop]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
|
|
5
.github/workflows/test.yaml
vendored
5
.github/workflows/test.yaml
vendored
|
@ -1,6 +1,9 @@
|
|||
name: Test
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: [master, develop]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
|
|
Loading…
Reference in a new issue