Skip to content

Commit

Permalink
SONARPY-2411 Fix JIRA automation triggered by Renovate (#2214)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainpiot authored Dec 4, 2024
1 parent 49dee32 commit 64274bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/PullRequestCreated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
if: |
github.event.pull_request.head.repo.full_name == github.repository
&& github.event.sender.type != 'Bot'
&& ${{ !startsWith(github.event.pull_request.title, 'NO-JIRA') }}
&& ${{ !startsWith(github.head_ref, 'renovate/') }}
&& ${{ !contains(github.event.pull_request.labels.*.name, 'dependencies') }}
&& !startsWith(github.event.pull_request.title, 'NO-JIRA')
&& !startsWith(github.head_ref, 'renovate/')
&& !contains(github.event.pull_request.labels.*.name, 'dependencies')
steps:
- id: secrets
uses: SonarSource/vault-action-wrapper@v3
Expand Down

0 comments on commit 64274bf

Please sign in to comment.