Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,12 @@ jobs:
### ✅ PR Title Formatted Correctly
The title of this PR has been updated to match the correct format. Thank you!

- name: Fail the job
if: ${{ steps.check.outputs.success == 'false'}}
- name: Validate PR title format
run: |
echo "PR title is not formatted correctly. Please update the title to match the format."
exit 1
if [ "${{ steps.check.outputs.success }}" = "true" ]; then
echo "PR title format is correct."
exit 0
else
echo "PR title is not formatted correctly. Please update the title to match the format."
exit 1
fi
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Version Playground

Testing...
Testing....
Loading