From 036b8d50bab745442f24367798d43b8397b5a45b Mon Sep 17 00:00:00 2001 From: Bill Little Date: Wed, 6 Dec 2023 00:03:59 +0000 Subject: [PATCH] fix actions/labeler for v5 (#557) --- .github/labeler.yml | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index d4563ec4..484b40aa 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,15 +1,27 @@ 'type: dependencies': - - requirements/geovista.yml - - requirements/pypi*.txt - - requirements/locks/py*.txt +- any: + - changed-files: + - any-glob-to-any-file: 'requirements/geovista.yml' + - any-glob-to-any-file: 'requirements/pypi*.txt' + - any-glob-to-any-file: 'requirements/locks/py*.txt' 'type: documentation': - - docs/**/* +- any: + - changed-files: + - any-glob-to-any-file: 'docs/**/*' 'type: examples': - - src/geovista/examples/**/* +- any: + - changed-files: + - any-glob-to-any-file: 'src/geovista/examples/**/*' 'type: gha': - - .github/*.yml - - .github/**/*.yml +- any: + - changed-files: + - any-glob-to-any-file: '.github/*.yml' + - any-glob-to-any-file: '.github/**/*.yml' 'type: infrastructure': - - '*' +- any: + - changed-files: + - any-glob-to-any-file: '*' 'type: testing': - - tests/**/* +- any: + - changed-files: + - any-glob-to-any-file: 'tests/**/*'