From e5f4bf8241edf0bac70b3cf326025f5e66f06893 Mon Sep 17 00:00:00 2001 From: Sid <122173059+hugo-sid@users.noreply.github.com> Date: Sun, 21 May 2023 17:31:15 +0530 Subject: [PATCH] ci: increase PR labeler warning limit --- .github/workflows/pr-labeler.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index 0c5956f1..cfe022ff 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -35,15 +35,15 @@ jobs: with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} xs_label: 'size/xs' - xs_max_size: 2 + xs_max_size: 35 s_label: 'size/s' - s_max_size: 10 + s_max_size: 75 m_label: 'size/m' - m_max_size: 50 + m_max_size: 150 l_label: 'size/l' - l_max_size: 200 + l_max_size: 300 xl_label: 'size/xl' message_if_xl: > - This PR exceeds the recommended size of 200 lines. + This PR exceeds the recommended size of 300 lines (counting both additions & deletions). Kindly ensure that you are NOT addressing multiple issues in one PR. We recommend you to create atomic PRs which focus on a single change.