summaryrefslogtreecommitdiff
path: root/.github/workflows/ensure-pr-label.yml
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2024-07-25 09:46:26 -0700
committerGitHub <noreply@github.com>2024-07-25 09:46:26 -0700
commit3c03d279ee4ccf4796901f4ea6640787d341d11d (patch)
treecc6dba56abb549cd146a534bf24893b92020f256 /.github/workflows/ensure-pr-label.yml
parenta443350a6bb344ccda46c35ebad5a7cf1a7b262d (diff)
Don't trigger CI on doc changes. (#4736)
Diffstat (limited to '.github/workflows/ensure-pr-label.yml')
-rw-r--r--.github/workflows/ensure-pr-label.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ensure-pr-label.yml b/.github/workflows/ensure-pr-label.yml
index 59e94e0ff..8db5b6057 100644
--- a/.github/workflows/ensure-pr-label.yml
+++ b/.github/workflows/ensure-pr-label.yml
@@ -2,6 +2,11 @@ name: Verify PR Labels
on:
pull_request:
types: [opened, labeled, unlabeled, synchronize]
+ paths-ignore:
+ - 'docs/**'
+ - 'LICENCE'
+ - 'CONTRIBUTION.md'
+ - 'README.md'
jobs:
label:
runs-on: ubuntu-latest