Skip to content

Commit

Permalink
feat: add sprint done to columns checked for merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
AntBush authored and ccbc-service-account committed Jan 6, 2025
1 parent e7ef549 commit d1a963c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/move-on-merge-conflict.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
"https://connectivitydivision.atlassian.net/rest/api/3/issue/$JIRA_KEY")
status=$(echo "$response" | jq -r '.fields.status.name')
echo "Issue status: $status"
if [ "$status" == "PO REVIEW" ]; then
if [ "$status" == "PO REVIEW" ] || [ "$status" == "SPRINT DONE" ]; then
echo "Moving issue $JIRA_KEY to Merge Conflict column"
curl -X POST \
-H "Authorization: Basic $JIRA_AUTH" \
Expand Down

0 comments on commit d1a963c

Please sign in to comment.