1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00

limit documentation workflow runs for relevant changes. (#7125)

This commit is contained in:
Sayak Paul
2024-02-29 19:01:54 +05:30
committed by GitHub
parent 3daebe2b44
commit 56dac1cedc
2 changed files with 8 additions and 0 deletions

View File

@@ -7,6 +7,10 @@ on:
- doc-builder*
- v*-release
- v*-patch
paths:
- "src/diffusers/**.py"
- "examples/"
- "docs/"
jobs:
build:

View File

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