This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new 9eea826aa [SEDONA-535] Add the pull request labeler (#1346)
9eea826aa is described below
commit 9eea826aab4a6c9ffabd641a746d5dd3273ca4b7
Author: John Bampton <[email protected]>
AuthorDate: Sat Apr 20 07:56:47 2024 +1000
[SEDONA-535] Add the pull request labeler (#1346)
https://github.com/actions/labeler
---
.github/labeler.yml | 77 +++++++++++++++++++++++++++++++++++++++++++
.github/workflows/labeler.yml | 15 +++++++++
2 files changed, 92 insertions(+)
diff --git a/.github/labeler.yml b/.github/labeler.yml
new file mode 100644
index 000000000..ca66be130
--- /dev/null
+++ b/.github/labeler.yml
@@ -0,0 +1,77 @@
+# https://github.com/actions/labeler
+root:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - '*'
+
+docs:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - docs/**/*
+ - docs-overrides/**/*
+ - README.md
+
+github-actions:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - .github/**/*
+
+licenses:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - licenses/**/*
+
+sedona-common:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - common/**/*
+
+sedona-docker:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - docker/**/*
+
+sedona-flink:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - flink/**/*
+ - flink-shaded/**/*
+
+sedona-python:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - python/**/*
+
+sedona-r:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - R/**/*
+
+sedona-snowflake:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - snowflake/**/*
+ - snowflake-tester/**/*
+
+sedona-spark:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - spark/**/*
+ - spark-shaded/**/*
+
+sedona-zeppelin:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - zeppelin/**/*
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
new file mode 100644
index 000000000..4d1493689
--- /dev/null
+++ b/.github/workflows/labeler.yml
@@ -0,0 +1,15 @@
+# https://github.com/actions/labeler
+name: Pull Request Labeler
+on:
+ - pull_request_target
+jobs:
+ triage:
+ permissions:
+ contents: read
+ pull-requests: write
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v5
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
+ sync-labels: true