From ab54e985ff25adc9a36784975ec96e39644c4a44 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun <cheeaun@gmail.com> Date: Mon, 19 Aug 2024 00:05:09 +0800 Subject: [PATCH] Change to 50 --- .github/workflows/i18n-automerge.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/i18n-automerge.yml b/.github/workflows/i18n-automerge.yml index 5d60d5d4..ea612983 100644 --- a/.github/workflows/i18n-automerge.yml +++ b/.github/workflows/i18n-automerge.yml @@ -42,12 +42,12 @@ jobs: echo "Total lines changed: $LINES_CHANGED" - # Check if the number of lines changed is more than 20 - if [ "$LINES_CHANGED" -le 20 ]; then - echo "ERROR: 20 or fewer lines have been changed. Failing the check." + # Check if the number of lines changed is more than 50 + if [ "$LINES_CHANGED" -le 50 ]; then + echo "ERROR: 50 or fewer lines have been changed. Failing the check." exit 1 else - echo "Success: More than 20 lines have been changed." + echo "Success: More than 50 lines have been changed." fi - name: Merge pull request