Skip to content

Commit

Permalink
Fix fun typo that would cause an infinite build loop
Browse files Browse the repository at this point in the history
  • Loading branch information
danmindru committed Nov 17, 2024
1 parent 1462e08 commit 3497088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/parse-submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3497088

Please sign in to comment.