From 91a983ebcf71cd8a0a44c0448e906abd298d3ef1 Mon Sep 17 00:00:00 2001 From: Liang-Chi Hsieh Date: Tue, 5 Dec 2023 14:38:43 -0800 Subject: [PATCH] fix: Changed labeler.yml to latest format --- .github/workflows/dev_pr/labeler.yml | 52 +++++++++++++++++++--------- 1 file changed, 36 insertions(+), 16 deletions(-) diff --git a/.github/workflows/dev_pr/labeler.yml b/.github/workflows/dev_pr/labeler.yml index e84cf5efb1d8..c091cf0cad84 100644 --- a/.github/workflows/dev_pr/labeler.yml +++ b/.github/workflows/dev_pr/labeler.yml @@ -16,35 +16,55 @@ # under the License. development-process: - - dev/**.* - - .github/**.* - - ci/**.* - - .asf.yaml +- any: + - changed-files: + - AnyGlobToAnyFile: ['dev/**.*', '.github/**.*', 'ci/**.*', '.asf.yaml'] + - base-branch: 'main' documentation: - - docs/**.* - - README.md - - ./**/README.md - - DEVELOPERS.md - - datafusion/docs/**.* +- any: + - changed-files: + - AnyGlobToAnyFile: ['docs/**.*', 'README.md', './**/README.md', 'DEVELOPERS.md', 'datafusion/docs/**.*'] + - base-branch: 'main' sql: - - datafusion/sql/**/* +- any: + - changed-files: + - AnyGlobToAnyFile: ['datafusion/sql/**/*'] + - base-branch: 'main' logical-expr: - - datafusion/expr/**/* +- any: + - changed-files: + - AnyGlobToAnyFile: ['datafusion/expr/**/*'] + - base-branch: 'main' physical-expr: - - datafusion/physical-expr/**/* +- any: + - changed-files: + - AnyGlobToAnyFile: ['datafusion/physical-expr/**/*'] + - base-branch: 'main' optimizer: - - datafusion/optimizer/**/* +- any: + - changed-files: + - AnyGlobToAnyFile: ['datafusion/optimizer/**/*'] + - base-branch: 'main' core: - - datafusion/core/**/* +- any: + - changed-files: + - AnyGlobToAnyFile: ['datafusion/core/**/*'] + - base-branch: 'main' substrait: - - datafusion/substrait/**/* +- any: + - changed-files: + - AnyGlobToAnyFile: ['datafusion/substrait/**/*'] + - base-branch: 'main' sqllogictest: - - datafusion/sqllogictest/**/* +- any: + - changed-files: + - AnyGlobToAnyFile: ['datafusion/sqllogictest/**/*'] + - base-branch: 'main'