mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 13:30:40 +00:00
Update CI scripts to ignore .md changes (#100)
This reduces the load on GHA infra
This commit is contained in:
parent
e34586b847
commit
2f7e1a2395
2 changed files with 6 additions and 0 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -4,6 +4,11 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'master'
|
- 'master'
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'papers/**'
|
||||||
|
- 'rfcs/**'
|
||||||
|
- '*.md'
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
|
|
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
- 'papers/**'
|
- 'papers/**'
|
||||||
- 'rfcs/**'
|
- 'rfcs/**'
|
||||||
|
- '*.md'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in a new issue