[action] add action auto labeler to label PR
This commit is contained in:
parent
742dae7220
commit
a75ac04440
|
@ -0,0 +1,41 @@
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
#
|
||||||
|
|
||||||
|
# glob 代表文件夹
|
||||||
|
# ref https://github.com/actions/labeler
|
||||||
|
|
||||||
|
BSP:
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: bsp/**
|
||||||
|
|
||||||
|
'BSP: STM32':
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: bsp/stm32/**
|
||||||
|
|
||||||
|
'BSP: NXP':
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: bsp/nxp/**
|
||||||
|
|
||||||
|
'BSP: Cvitek':
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: bsp/cvitek/**
|
||||||
|
|
||||||
|
'BSP: GD32':
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: bsp/gd32/**
|
||||||
|
|
||||||
|
action:
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: .github/**
|
||||||
|
- any-glob-to-any-file: tools/ci/**
|
||||||
|
|
||||||
|
Doc:
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file: documentation/**
|
|
@ -0,0 +1,25 @@
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/labeler@v5
|
|
@ -41,7 +41,7 @@ permissions:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: ${{ github.event.inputs.bsp_options }}
|
name: update and create pull request
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
|
|
Loading…
Reference in New Issue