Skip to content

Commit 0104a58

Browse files
authored
Merge pull request #6 from YAPP-Github/hotfix-chore
chore: debug 추가
2 parents 00aa514 + d2c1b12 commit 0104a58

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/close-jira-issue.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,18 @@ jobs:
2020
- name: Extract Jira issue key from GitHub issue title
2121
id: extract-key
2222
run: |
23+
echo "Issue Title: ${{ github.event.issue.title }}"
2324
ISSUE_TITLE="${{ github.event.issue.title }}"
2425
JIRA_KEY=$(echo "$ISSUE_TITLE" | grep -oE '[A-Z]+-[0-9]+' || true)
26+
echo "Extracted Jira Key: $JIRA_KEY"
2527
echo "JIRA_KEY=$JIRA_KEY" >> $GITHUB_ENV
2628
29+
- name: Print final JIRA_KEY (debug)
30+
run: echo "📦 Final JIRA_KEY = ${{ env.JIRA_KEY }}"
31+
2732
- name: Close Jira issue
2833
if: ${{ env.JIRA_KEY != '' }}
2934
uses: atlassian/gajira-transition@v3
3035
with:
3136
issue: ${{ env.JIRA_KEY }}
32-
transition: DONE
37+
transition: 31

0 commit comments

Comments
 (0)