Skip to content

Commit d9c72a3

Browse files
Merge pull request #694 from rhmdnd/CMP-3157
CMP-3157: Fix check pr title action
2 parents e1ca625 + a093e21 commit d9c72a3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/check-pr-title.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
PR_TITLE: ${{ github.event.pull_request.title }}
1212
steps:
1313
- name: Check if the PR title is well dressed
14-
if: github.event.pull_request.user.login != 'renovate[bot]' || github.event.pull_request.user.login != 'red-hat-konflux[bot]'
14+
if: >-
15+
github.event.pull_request.user.login != 'renovate[bot]' &&
16+
github.event.pull_request.user.login != 'red-hat-konflux[bot]'
1517
env:
1618
JIRA: '([A-Z]+-[0-9]+, ?)*[A-Z]+-[0-9]+'
1719
TEXT: ': .+'

0 commit comments

Comments
 (0)