From d58cebf9e6ccaf00266c292c9ad7ddd0f88fcc82 Mon Sep 17 00:00:00 2001 From: Anthony Bushara Date: Fri, 3 Jan 2025 16:28:08 -0500 Subject: [PATCH] feat: add sprint done to columns checked for merge conflict --- .github/workflows/move-on-merge-conflict.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/move-on-merge-conflict.yaml b/.github/workflows/move-on-merge-conflict.yaml index 9004e95578..8ce0699184 100644 --- a/.github/workflows/move-on-merge-conflict.yaml +++ b/.github/workflows/move-on-merge-conflict.yaml @@ -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" \