Modify build workflows to only trigger on non-doc changes
parent
5fc1f3489c
commit
43a50a69c6
|
@ -1,6 +1,11 @@
|
||||||
name: Linux CI
|
name: Linux CI
|
||||||
|
|
||||||
on: [pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- '**.ipynb'
|
||||||
|
- 'myst.yml'
|
||||||
|
|
||||||
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
||||||
# and start a new one. The other runner will be available more quickly to your PR.
|
# and start a new one. The other runner will be available more quickly to your PR.
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
name: macOS CI
|
name: macOS CI
|
||||||
|
|
||||||
on: [pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- '**.ipynb'
|
||||||
|
- 'myst.yml'
|
||||||
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
||||||
# and start a new one. The other runner will be available more quickly to your PR.
|
# and start a new one. The other runner will be available more quickly to your PR.
|
||||||
concurrency:
|
concurrency:
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
name: Python CI
|
name: Python CI
|
||||||
|
|
||||||
on: [pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- '**.ipynb'
|
||||||
|
- 'myst.yml'
|
||||||
|
|
||||||
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
||||||
# and start a new one. The other runner will be available more quickly to your PR.
|
# and start a new one. The other runner will be available more quickly to your PR.
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
name: Special Cases CI
|
name: Special Cases CI
|
||||||
|
|
||||||
on: [pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- '**.ipynb'
|
||||||
|
- 'myst.yml'
|
||||||
|
|
||||||
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
||||||
# and start a new one. The other runner will be available more quickly to your PR.
|
# and start a new one. The other runner will be available more quickly to your PR.
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
name: Windows CI
|
name: Windows CI
|
||||||
|
|
||||||
on: [pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- '**.ipynb'
|
||||||
|
- 'myst.yml'
|
||||||
|
|
||||||
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
# Every time you make a push to your PR, it cancel immediately the previous checks,
|
||||||
# and start a new one. The other runner will be available more quickly to your PR.
|
# and start a new one. The other runner will be available more quickly to your PR.
|
||||||
|
|
|
@ -4,6 +4,10 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- develop
|
- develop
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- '**.ipynb'
|
||||||
|
- 'myst.yml'
|
||||||
jobs:
|
jobs:
|
||||||
trigger-package-build:
|
trigger-package-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -4,6 +4,10 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- develop
|
- develop
|
||||||
|
paths-ignore:
|
||||||
|
- '**.md'
|
||||||
|
- '**.ipynb'
|
||||||
|
- 'myst.yml'
|
||||||
jobs:
|
jobs:
|
||||||
triggerPython:
|
triggerPython:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue