From e076d0ed415b4a8bc814c6d1bf170ab852e4ebdc Mon Sep 17 00:00:00 2001 From: Byungjin Park Date: Fri, 1 Dec 2023 22:16:09 +0900 Subject: [PATCH] Ignore binary files and examples for pull-request-labeler --- .github/workflows/pull-request-labeler.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request-labeler.yaml b/.github/workflows/pull-request-labeler.yaml index 1784c72..b69269f 100644 --- a/.github/workflows/pull-request-labeler.yaml +++ b/.github/workflows/pull-request-labeler.yaml @@ -22,13 +22,20 @@ jobs: xs_label: 'size/XS' xs_max_size: '20' s_label: 'size/S' - s_max_size: '50' + s_max_size: '100' m_label: 'size/M' - m_max_size: '150' + m_max_size: '500' l_label: 'size/L' - l_max_size: '300' + l_max_size: '1000' xl_label: 'size/XL' fail_if_xl: 'false' message_if_xl: > 'This PR has too many changes. Please make sure you are NOT addressing multiple issues with one PR.' + files_to_ignore: | + "examples/*" + "*.otf" + "*.pdf" + "*.png" + "*.sty" + "*.ttf"