Skip to content

Commit

Permalink
Typo fix in pr limit action (#1518)
Browse files Browse the repository at this point in the history
Co-authored-by: Sourav Maji <[email protected]>
  • Loading branch information
majisourav99 and Sourav Maji authored Feb 11, 2025
1 parent 4488e72 commit f0c26c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/limit-pr-files-changed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
echo "File: $file, Lines Changed: $TOTAL"
# Fail if there are both schema and Java file changes
if [[ "JAVA_FILE" == true && "SCHEMA_FILE" == true ]]; then
if [[ "$JAVA_FILE" == true && "$SCHEMA_FILE" == true ]]; then
echo "The PR has both schema and Java code changes, please make a separate PR for schema changes."
echo "For schema file changes, please update build.gradle to update 'versionOverrides' inside compileAvro task to use fixed protocol version"
exit 1
Expand Down

0 comments on commit f0c26c6

Please sign in to comment.