[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:
Mishig 2023-08-11 07:07:53 +02:00 committed by GitHub
parent e58ad6dd66
commit 5df4c7c0d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,8 @@ name: Build documentation
on:
push:
paths:
- "docs/source/**"
branches:
- main
- doc-builder*

View File

@ -2,6 +2,8 @@ name: Build PR Documentation
on:
pull_request:
paths:
- "docs/source/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}