diff options
author | 2024-08-26 16:54:59 +0100 | |
---|---|---|
committer | 2024-08-26 16:54:59 +0100 | |
commit | 3e7bbe3b12b6930ca8916436056d5bce6395ba4d (patch) | |
tree | abcf29d42618104c22efea480cdb3b7051c8cdae /.github | |
parent | Prune branhes that are deleted upstream (diff) |
Update globs to subdirectory wildcards in PR labeller config
Diffstat (limited to '.github')
-rw-r--r-- | .github/labeler.yml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml index 3bad6b3..2ba20eb 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,35 +1,35 @@ "group: ansible": - changed-files: - - any-glob-to-any-file: 'ansible/*' + - any-glob-to-any-file: "ansible/**" "group: dns": - changed-files: - - any-glob-to-any-file: 'dns/*' + - any-glob-to-any-file: "dns/**" "group: docs": - changed-files: - - any-glob-to-any-file: 'docs/*' + - any-glob-to-any-file: "docs/**" "group: github actions": - changed-files: - - any-glob-to-any-file: '.github/workflows/*' + - any-glob-to-any-file: ".github/workflows/**" "group: kubernetes": - changed-files: - - any-glob-to-any-file: 'kubernetes/*' + - any-glob-to-any-file: "kubernetes/**" "component: database": - changed-files: - - any-glob-to-any-file: - - 'ansible/roles/postgres/*' - - 'ansible/roles/prometheus-postgres-exporter/*' + - any-glob-to-any-file: + - "ansible/roles/postgres/**" + - "ansible/roles/prometheus-postgres-exporter/**" "component: email": - changed-files: - - any-glob-to-any-file: - - 'ansible/roles/dovecot/*' - - 'ansible/roles/neomutt/*' - - 'ansible/roles/opendkim/*' - - 'ansible/roles/opendmarc/*' - - 'ansible/roles/postfix/*' - - 'ansible/roles/spamassassin/*' + - any-glob-to-any-file: + - "ansible/roles/dovecot/**" + - "ansible/roles/neomutt/**" + - "ansible/roles/opendkim/**" + - "ansible/roles/opendmarc/**" + - "ansible/roles/postfix/**" + - "ansible/roles/spamassassin/**" |