Skip to content

Commit

Permalink
[IDP-602] Edit Jira workflow to ignore renovate pull requests (#7)
Browse files Browse the repository at this point in the history
* Exclude renovate PR from Jira validation
  • Loading branch information
Zav authored Sep 26, 2023
1 parent 2a870be commit c60be39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/jira.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
shell: pwsh
run: |
Install-Module JiraPS -Scope CurrentUser -Force
if ("$env:GITHUB_HEAD_REF" -like "*/renovate/*" -eq $True)
if ("$env:GITHUB_HEAD_REF" -like "*renovate/*" -eq $True)
{
Write-Host "Skipping, renovate branch detected"
return
Expand Down

0 comments on commit c60be39

Please sign in to comment.