This is an automated email from the ASF dual-hosted git repository.
liuhongyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new 9f857fe613 infra: add issue label manager GHA (#6197)
9f857fe613 is described below
commit 9f857fe613238d34a4828c8fb9483d4ded0ffb0e
Author: shown <[email protected]>
AuthorDate: Wed Oct 8 13:48:30 2025 +0800
infra: add issue label manager GHA (#6197)
Signed-off-by: yuluo-yx <[email protected]>
Co-authored-by: aias00 <[email protected]>
---
.github/workflows/issue-label.yml | 49 +++++++++++++++++++++++++++++++++++++++
.prowlabels.yaml | 33 ++++++++++++++++++++++++++
2 files changed, 82 insertions(+)
diff --git a/.github/workflows/issue-label.yml
b/.github/workflows/issue-label.yml
new file mode 100644
index 0000000000..9dea11f695
--- /dev/null
+++ b/.github/workflows/issue-label.yml
@@ -0,0 +1,49 @@
+# 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: Issue Manager
+
+permissions: {}
+
+on:
+ issue_comment:
+ types:
+ - created
+ - edited
+
+jobs:
+ execute:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - uses:
jpmcb/prow-github-actions@c44ac3a57d67639e39e4a4988b52049ef45b80dd # v2.0.0
+ with:
+ prow-commands: '/assign
+ /unassign
+ /lgtm
+ /approve
+ /area
+ /priority
+ /remove
+ /close
+ /reopen
+ /lock
+ /milestone
+ /hold
+ /cc
+ /uncc'
+ github-token: "${{ secrets.GITHUB_TOKEN }}"
diff --git a/.prowlabels.yaml b/.prowlabels.yaml
new file mode 100644
index 0000000000..ac6f58ffd9
--- /dev/null
+++ b/.prowlabels.yaml
@@ -0,0 +1,33 @@
+# 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.
+
+area:
+ - core
+ - observability
+ - networking
+ - bench
+ - environment
+ - docs
+ - infra
+ - db
+ - data-sync
+ - admin
+ - testing
+ - community
+
+priority:
+ - P0
+ - P1
+ - P2