[docs] Build docs only when doc files change (#812)
Build docs only when change happens in `docs/source` See for example https://github.com/huggingface/api-inference/blob/main/.github/workflows/build_documentation.yml#L3-L8
This commit is contained in:
parent
e58ad6dd66
commit
5df4c7c0d7
|
@ -2,6 +2,8 @@ name: Build documentation
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
paths:
|
||||||
|
- "docs/source/**"
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- doc-builder*
|
- doc-builder*
|
||||||
|
|
|
@ -2,6 +2,8 @@ name: Build PR Documentation
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- "docs/source/**"
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||||
|
|
Loading…
Reference in New Issue