From 3497088b68488a433708d329e908ab462bb9671f Mon Sep 17 00:00:00 2001 From: Dan Mindru Date: Sun, 17 Nov 2024 22:17:59 +0100 Subject: [PATCH] Fix fun typo that would cause an infinite build loop --- .github/workflows/parse-submission.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/parse-submission.yml b/.github/workflows/parse-submission.yml index 21863982..c4851f54 100644 --- a/.github/workflows/parse-submission.yml +++ b/.github/workflows/parse-submission.yml @@ -20,7 +20,7 @@ jobs: id: check run: | COMMIT_MESSAGE=$(git log -1 --pretty=%B) - if [[ "$COMMIT_MESSAGE" == "Update repository stars" || "$COMMIT_MESSAGE" == "Update app info" ]]; then + if [[ "$COMMIT_MESSAGE" == "Update repository stats" || "$COMMIT_MESSAGE" == "Update app info" ]]; then echo "skip=true" >> $GITHUB_ENV echo "::set-output name=skip::true" else