2024-08-25 23:40:10 +00:00
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 2006-2024, RT-Thread Development Team
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
#
|
|
|
|
|
# Change Logs:
|
|
|
|
|
# Date Author Notes
|
|
|
|
|
# 2024-08-26 supperthomas the first version
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
#这个action用来自动给pull request 添加标签
|
|
|
|
|
#当一个pull request被打开时,这个action会自动给这个pull request添加标签
|
|
|
|
|
|
|
|
|
|
name: "Pull Request Labeler"
|
|
|
|
|
on:
|
|
|
|
|
- pull_request_target
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
labeler:
|
|
|
|
|
permissions:
|
|
|
|
|
contents: read
|
|
|
|
|
pull-requests: write
|
2025-01-06 15:27:04 +08:00
|
|
|
|
runs-on: ubuntu-22.04
|
2024-08-25 23:40:10 +00:00
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/labeler@v5
|