Skip to content

Commit

Permalink
Build: Bump actions/labeler from 4 to 5 (apache#9331)
Browse files Browse the repository at this point in the history
  • Loading branch information
panbingkun authored Jan 4, 2024
1 parent 27e8c42 commit 4ccc29b
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 44 deletions.
186 changes: 143 additions & 43 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,71 +17,171 @@
# under the License.
#
# Pull Request Labeler Github Action Configuration: https://github.com/marketplace/actions/labeler

INFRA:
- .asf.yaml
- .gitattributes
- .gitignore
- baseline.gradle
- deploy.gradle
- jitpack.yml
- travis.yml
- .baseline/**/*
- .github/**/*
- dev/**/*
- changed-files:
- any-glob-to-any-file: [
'.asf.yaml',
'.gitattributes',
'.gitignore',
'baseline.gradle',
'deploy.gradle',
'jitpack.yml',
'travis.yml',
'.baseline/**/*',
'.github/**/*',
'dev/**/*'
]

BUILD:
- "**/*gradle*"
- changed-files:
- any-glob-to-any-file: [
'**/*gradle*'
]

DOCS:
- docs/**/*
- "**/*CHANGELOG.md"
- "**/*README.md"
- "**/*CONTRIBUTING.md"
- changed-files:
- any-glob-to-any-file: [
'docs/**/*',
'**/*CHANGELOG.md',
'**/*README.md',
'**/*CONTRIBUTING.md'
]

SPECIFICATION:
- "format/*"
- changed-files:
- any-glob-to-any-file: [
'format/*'
]

EXAMPLES:
- examples/**/*
- changed-files:
- any-glob-to-any-file: [
'examples/**/*'
]

COMMON:
- common/**/*
- changed-files:
- any-glob-to-any-file: [
'common/**/*'
]

API:
- api/**/*
- changed-files:
- any-glob-to-any-file: [
'api/**/*'
]

CORE:
- core/**/*
- changed-files:
- any-glob-to-any-file: [
'core/**/*'
]

PARQUET:
- parquet/**/*
- changed-files:
- any-glob-to-any-file: [
'parquet/**/*'
]

ARROW:
- arrow/**/*
- changed-files:
- any-glob-to-any-file: [
'arrow/**/*'
]

ORC:
- orc/**/*
- changed-files:
- any-glob-to-any-file: [
'orc/**/*'
]

HIVE:
- hive3/**/*
- hive-metastore/**/*
- hive-runtime/**/*
- hive3-orc-bundle/**/*
- changed-files:
- any-glob-to-any-file: [
'hive3/**/*',
'hive-metastore/**/*',
'hive-runtime/**/*',
'hive3-orc-bundle/**/*'
]

DATA:
- data/**/*
- changed-files:
- any-glob-to-any-file: [
'data/**/*'
]

SPARK:
- spark/**/*
- changed-files:
- any-glob-to-any-file: [
'spark/**/*'
]

FLINK:
- flink/**/*
- changed-files:
- any-glob-to-any-file: [
'flink/**/*'
]

MR:
- mr/**/*
- changed-files:
- any-glob-to-any-file: [
'mr/**/*'
]

PIG:
- pig/**/*
- changed-files:
- any-glob-to-any-file: [
'pig/**/*'
]

AWS:
- aws/**/*
- aws-bundle/**/*
- changed-files:
- any-glob-to-any-file: [
'aws/**/*',
'aws-bundle/**/*'
]

NESSIE:
- nessie/**/*
- changed-files:
- any-glob-to-any-file: [
'nessie/**/*'
]

ALIYUN:
- aliyun/**/*
- changed-files:
- any-glob-to-any-file: [
'aliyun/**/*'
]

GCP:
- gcp/**/*
- gcp-bundle/**/*
- changed-files:
- any-glob-to-any-file: [
'gcp/**/*',
'gcp-bundle/**/*'
]

DELL:
- dell/**/*
- changed-files:
- any-glob-to-any-file: [
'dell/**/*'
]

SNOWFLAKE:
- snowflake/**/*
- changed-files:
- any-glob-to-any-file: [
'snowflake/**/*'
]

OPENAPI:
- open-api/**/*
- changed-files:
- any-glob-to-any-file: [
'open-api/**/*'
]

AZURE:
- azure/**/*
- azure-bundle/**/*
- changed-files:
- any-glob-to-any-file: [
'azure/**/*',
'azure-bundle/**/*'
]
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
triage:
runs-on: ubuntu-22.04
steps:
- uses: actions/labeler@v4
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
sync-labels: true

0 comments on commit 4ccc29b

Please sign in to comment.