You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by kg...@apache.org on 2021/01/29 17:42:15 UTC

[hive] 01/01: changes-so-far

This is an automated email from the ASF dual-hosted git repository.

kgyrtkirk pushed a commit to branch HIVE-24525
in repository https://gitbox.apache.org/repos/asf/hive.git

commit 210e8f027cec29a914de8606f771640d415dde93
Author: Zoltan Haindrich <ki...@rxd.hu>
AuthorDate: Fri Jan 29 17:40:43 2021 +0000

    changes-so-far
---
 .github/assign-by-files.yml       | 47 +++++++++++++++++++++++++++++++++++++++
 .github/workflows/auto-assign.yml | 12 ++++++++++
 2 files changed, 59 insertions(+)

diff --git a/.github/assign-by-files.yml b/.github/assign-by-files.yml
new file mode 100644
index 0000000..02faf1b
--- /dev/null
+++ b/.github/assign-by-files.yml
@@ -0,0 +1,47 @@
+---
+# thrift changes
+'**/*.thrift':
+  - kgyrtkirk
+# parser changes
+'**/*.g':
+  - kgyrtkirk
+# metastore database changes
+'**/package.jdo':
+  - kgyrtkirk
+# these will match on various scheduled query
+'**/schq/**':
+  - kgyrtkirk
+'**/*Scheduled*':
+  - kgyrtkirk
+# these will match sketches related stuff
+'**/*[sS]ketches*':
+  - kgyrtkirk
+# Build system
+'Jenkinsfile':
+  - kgyrtkirk
+'.github/**':
+  - kgyrtkirk
+  - HiveQA
+# ddl changes
+'**/ddl/**':
+  - miklosgergely
+# driver related changes
+'**/ql/*@(Driver|Compiler|Executor)*.java':
+  - miklosgergely
+# schematool changes
+'**/schematool/**':
+  - miklosgergely
+# metatool changes
+'**/metatool/**':
+  - miklosgergely
+'**/tez/**/*.java':
+  - abstractdog
+'**/*Tez*java':
+  - abstractdog
+'**/*TopNKey*java':
+  - kasakrisz
+'**/*CardinalityPreserving*java':
+  - kasakrisz
+# query optimizer
+'**/ql/optimizer/**':
+  - jcamachor
diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml
new file mode 100644
index 0000000..5ebcb6d
--- /dev/null
+++ b/.github/workflows/auto-assign.yml
@@ -0,0 +1,12 @@
+name: "Auto Assign"
+on:
+  - pull_request_target
+
+jobs:
+  assign_reviewer:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: shufo/auto-assign-reviewer-by-files@v1.1.1
+      with:
+        config: '.github/assign-by-files.yml'
+        token: ${{ secrets.GITHUB_TOKEN }}