Skip to content

Commit 64274bf

Browse files
authored
SONARPY-2411 Fix JIRA automation triggered by Renovate (#2214)
1 parent 49dee32 commit 64274bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/PullRequestCreated.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
if: |
1515
github.event.pull_request.head.repo.full_name == github.repository
1616
&& github.event.sender.type != 'Bot'
17-
&& ${{ !startsWith(github.event.pull_request.title, 'NO-JIRA') }}
18-
&& ${{ !startsWith(github.head_ref, 'renovate/') }}
19-
&& ${{ !contains(github.event.pull_request.labels.*.name, 'dependencies') }}
17+
&& !startsWith(github.event.pull_request.title, 'NO-JIRA')
18+
&& !startsWith(github.head_ref, 'renovate/')
19+
&& !contains(github.event.pull_request.labels.*.name, 'dependencies')
2020
steps:
2121
- id: secrets
2222
uses: SonarSource/vault-action-wrapper@v3

0 commit comments

Comments
 (0)