Skip to content

Commit

Permalink
small chnages in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yevoros committed Aug 5, 2024
1 parent 142155b commit 4e2ed6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create_jira_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
ISSUE_TITLE="${{ github.event.issue.title }}"
ISSUE_BODY="${{ github.event.issue.body }}"
ISSUE_TYPE="Task"
if echo "${{ github.event.issue.labels.*.name }}" | grep -q '"bug"'; then
if echo "${{ join(github.event.issue.labels.*.name, '/n')}}" | grep -q '"bug"'; then
ISSUE_TYPE="Bug"
elif echo "${{ github.event.issue.labels.*.name }}" | grep -q "feature"; then
ISSUE_TYPE="Story"
Expand Down

0 comments on commit 4e2ed6e

Please sign in to comment.