chore(deps): update update all non-major dependencies #155
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 of the action | |
name: labeler | |
# trigger when pull request is opened or when a draft is marked ready to review | |
on: | |
pull_request: | |
types: ["opened", "ready_for_review", "reopened", "synchronize"] | |
# pipeline to execute | |
jobs: | |
labeler: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: labeler | |
uses: codelytv/pr-size-labeler@1c3422395d899286d5ee2c809fd5aed264d5eb9b | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
xs_label: "size/xs" | |
xs_max_size: "15" | |
s_label: "size/s" | |
s_max_size: "100" | |
m_label: "size/m" | |
m_max_size: "250" | |
l_label: "size/l" | |
l_max_size: "500" | |
xl_label: "size/xl" | |
fail_if_xl: "false" | |
message_if_xl: > | |
This PR exceeds the recommended size of 500 lines. | |
Please make sure you are NOT addressing multiple issues with one PR. | |
Note this PR might be rejected due to its size. | |
files_to_ignore: | | |
"go.mod" | |
"go.sum" |