We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e35f50a commit a72617cCopy full SHA for a72617c
.github/workflows/pr.yml
@@ -23,11 +23,11 @@ jobs:
23
- name: Title should contain Jira ticket.
24
if: ${{ always() && !(contains(github.event.pull_request.title, 'CSHARP-')) }}
25
run: |
26
- echo "Title should contains Jira ticket."
+ echo "Title should contain Jira ticket."
27
exit 1
28
29
- name: Title should not end with period or elipses
30
- if: ${{ always() && (endsWith(github.event.pull_request.title, '.') || endsWith(github.event.pull_request.title, '…')) }}
+ if: ${{ always() && (endsWith(github.event.pull_request.title, '.') || endsWith(github.event.pull_request.title, '…')) }}
31
32
echo "Title should not end with a period or ellipses."
33
0 commit comments