This is an automated email from the ASF dual-hosted git repository.
alien11689 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/aries.git
The following commit(s) were added to refs/heads/trunk by this push:
new 831a9cdc0 [MAINTENANCE] Auto label PRs per component
831a9cdc0 is described below
commit 831a9cdc05d96378366555eb8494b035a6240764
Author: Dominik Przybysz <[email protected]>
AuthorDate: Fri Feb 14 21:09:47 2025 +0100
[MAINTENANCE] Auto label PRs per component
---
.github/labeler.yml | 67 +++++++++++++++++++++++++++++++++++++++++++
.github/workflows/labeler.yml | 12 ++++++++
2 files changed, 79 insertions(+)
diff --git a/.github/labeler.yml b/.github/labeler.yml
new file mode 100644
index 000000000..e1c5adf30
--- /dev/null
+++ b/.github/labeler.yml
@@ -0,0 +1,67 @@
+application:
+- changed-files:
+ - any-glob-to-any-file: 'application/*'
+async:
+- changed-files:
+ - any-glob-to-any-file: 'async/*'
+blueprint:
+- changed-files:
+ - any-glob-to-any-file: 'blueprint/*'
+eba-maven-plugin:
+- changed-files:
+ - any-glob-to-any-file: 'eba-maven-plugin/*'
+ejb:
+- changed-files:
+ - any-glob-to-any-file: 'ejb/*'
+esa-ant-task:
+- changed-files:
+ - any-glob-to-any-file: 'esa-ant-task/*'
+esa-maven-plugin:
+- changed-files:
+ - any-glob-to-any-file: 'esa-maven-plugin/*'
+jmx:
+- changed-files:
+ - any-glob-to-any-file: 'jmx/*'
+jndi:
+- changed-files:
+ - any-glob-to-any-file: 'jndi/*'
+parent:
+- changed-files:
+ - any-glob-to-any-file: 'parent/*'
+proxy:
+- changed-files:
+ - any-glob-to-any-file: 'proxy/*'
+pushstream:
+- changed-files:
+ - any-glob-to-any-file: 'pushstream/*'
+samples:
+- changed-files:
+ - any-glob-to-any-file: 'samples/*'
+sandbox:
+- changed-files:
+ - any-glob-to-any-file: 'sandbox/*'
+spi-fly:
+- changed-files:
+ - any-glob-to-any-file: 'spi-fly/*'
+subsystem:
+- changed-files:
+ - any-glob-to-any-file: 'subsystem/*'
+testsupport:
+- changed-files:
+ - any-glob-to-any-file: 'testsupport/*'
+transaction:
+- changed-files:
+ - any-glob-to-any-file: 'transaction/*'
+tutorials:
+- changed-files:
+ - any-glob-to-any-file: 'tutorials/*'
+util:
+- changed-files:
+ - any-glob-to-any-file: 'util/*'
+versioning:
+- changed-files:
+ - any-glob-to-any-file: 'versioning/*'
+web:
+- changed-files:
+ - any-glob-to-any-file: 'web/*'
+
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
new file mode 100644
index 000000000..52474c6a6
--- /dev/null
+++ b/.github/workflows/labeler.yml
@@ -0,0 +1,12 @@
+name: "Pull Request Labeler"
+on:
+ - pull_request_target
+
+jobs:
+ labeler:
+ permissions:
+ contents: read
+ pull-requests: write
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v5