Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/reusable-jira-pr_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ permissions:

jobs:
get_issue_key:
if: ${{ github.event.pull_request.user.login != 'dependabot' && github.event.pullrequest.user.type != 'Bot' }}
if: ${{ github.actor != 'dependabot[bot]' && !startsWith(github.head_ref, 'dependabot/') }}
Comment thread
RomFloreani marked this conversation as resolved.
Outdated
runs-on: ubuntu-latest
timeout-minutes: 5
outputs:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:


add_jira_summary:
if: ${{ github.event.action == 'opened' }}
if: ${{ needs.get_issue_key.result == 'success' && github.event.action == 'opened' }}
runs-on: ubuntu-latest
timeout-minutes: 20
needs: get_issue_key
Expand Down Expand Up @@ -128,6 +128,7 @@ jobs:
> /dev/null

check_jira_issue:
if: ${{ needs.get_issue_key.result == 'success' }}
runs-on: ubuntu-latest
timeout-minutes: 20
needs: get_issue_key
Expand Down
Loading