This is an automated email from the ASF dual-hosted git repository.
jinsongzhou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git
The following commit(s) were added to refs/heads/master by this push:
new c29db65a8 [AMORO-3651] Add auto assign action for issues (#3652)
c29db65a8 is described below
commit c29db65a8da71dfa5700fb6ee1266300eb00be5e
Author: Congxian Qiu <[email protected]>
AuthorDate: Tue Jul 8 10:13:29 2025 +0800
[AMORO-3651] Add auto assign action for issues (#3652)
---
.github/workflows/take.yml | 39 +++++++++++++++++++++++++++++++++++++++
CONTRIBUTING.md | 2 ++
2 files changed, 41 insertions(+)
diff --git a/.github/workflows/take.yml b/.github/workflows/take.yml
new file mode 100644
index 000000000..dd21c7949
--- /dev/null
+++ b/.github/workflows/take.yml
@@ -0,0 +1,39 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+name: Assign the issue via a `take` comment
+on:
+ issue_comment:
+ types: created
+
+permissions:
+ issues: write
+
+jobs:
+ issue_assign:
+ if: (!github.event.issue.pull_request) && github.event.comment.body ==
'take'
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/github-script@v7
+ with:
+ script: |
+ github.rest.issues.addAssignees({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: context.issue.number,
+ assignees: [context.payload.comment.user.login],
+ })
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 24a12ce01..3ff321925 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -41,6 +41,8 @@ to track it.
* Bug: A problem that prevents the project from functioning as intended.
* Subtask: A subtask of a Feature/Improvement that can be broken down into
smaller steps.
+You can assign the issue to yourself by leaving a comment with content `take`.
+
## Pull requests
Pull requests are the preferred mechanism for contributing to Amoro