Skip to content

Commit d8b8ba8

Browse files
authored
CI: Add Pull Request Labeler bot. (alibaba#1050)
1 parent 864947d commit d8b8ba8

File tree

25 files changed

+132
-3
lines changed

25 files changed

+132
-3
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#
2+
# Copyright 2024-2025 the original author or authors.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# https://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
17+
name: 🚀 Pull Request Robot
18+
on:
19+
- pull_request_target
20+
21+
jobs:
22+
labeler:
23+
permissions:
24+
contents: read
25+
pull-requests: write
26+
27+
runs-on: ubuntu-22.04
28+
steps:
29+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
- uses: actions/labeler@v5
31+
with:
32+
repo-token: "${{secrets.GITHUB_TOKEN}}"
33+
configuration-path: tools/ci-config/labeler.yml
34+
sync-labels: true
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)