Skip to content

Commit

Permalink
Update globs to subdirectory wildcards in PR labeller config
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Aug 26, 2024
1 parent c814370 commit 3e7bbe3
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -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/**"

0 comments on commit 3e7bbe3

Please sign in to comment.