GitAuto: 【多云编排】添加多云实例失败,可根据以下步骤检查问题。 几个地方需要修改和优化 #3509
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Size labeler | |
on: | |
- pull_request_target | |
jobs: | |
size-labeler: | |
permissions: | |
issues: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
name: Label the PR size | |
steps: | |
- uses: codelytv/pr-size-labeler@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
xs_label: "size/xs" | |
xs_max_size: "9" | |
s_label: "size/s" | |
s_max_size: "29" | |
m_label: "size/m" | |
m_max_size: "99" | |
l_label: "size/l" | |
l_max_size: "499" | |
xl_label: "size/xl" | |
xl_max_size: "999" | |
xll_label: "size/xll" | |
xll_max_size: "1999" | |
fail_if_xll: "false" | |
message_if_xll: > | |
This PR exceeds the recommended size of 2000 lines. | |
Please make sure you are NOT addressing multiple issues with one PR. | |
Note this PR might be rejected due to its size. |