File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 5252 transition_id : " 141"
5353 secrets :
5454 jira_auth : ${{ secrets.caller_jira_auth }}
55+
56+ add_comment :
57+ needs : [extract, transition]
58+
59+ # Expand each Jira key into a separate workflow run
60+ strategy :
61+ fail-fast : false
62+ matrix :
63+ jira_key : ${{ fromJson(needs.extract.outputs['jira-keys-json']) }}
64+
65+ # Skip fake placeholder key
66+ if : ${{ matrix.jira_key != '__NO_KEYS_FOUND__' }}
67+
68+ # Call the reusable workflow
69+ uses : scylladb/github-automation/.github/workflows/jira_add_comment.yml@automation-staging-branch
70+
71+ with :
72+ jira_key : ${{ matrix.jira_key }}
73+ comment : >
74+ This issue was closed due to the merge of PR
75+ [${{ github.event.pull_request.title }}](${{ github.event.pull_request.html_url }}).
76+
77+ secrets :
78+ jira_auth : ${{ secrets.caller_jira_auth }}
79+
You can’t perform that action at this time.
0 commit comments