Skip to content

Commit

Permalink
build: Jira 연동
Browse files Browse the repository at this point in the history
  • Loading branch information
KoungQ committed Sep 5, 2024
1 parent 056ea0f commit c830370
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/create-jira-sub-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,16 @@ jobs:
- name: Log created issue
run: echo "Jira Issue ${{ steps.issue-parser.outputs.parentKey }}/${{ steps.create.outputs.issue }} was created"

- name: Checkout develop code
- name: Checkout parent code
uses: actions/checkout@v4
with:
ref: main
ref: ${{ steps.create.outputs.issue }}

- name: Create branch with Ticket number
run: |
git checkout -b ${{ steps.create.outputs.issue }}
git push origin ${{ steps.create.outputs.issue }}
git checkout
git checkout -b "${{ steps.issue-parser.outputs.issueparser_parentKey }}-${{ steps.issue-parser.outputs.issueparser_summary }}"
git push origin "${{ steps.issue-parser.outputs.issueparser_parentKey }}-${{ steps.issue-parser.outputs.issueparser_summary }}"
- name: Update issue title
uses: actions-cool/issues-helper@v3
Expand Down

0 comments on commit c830370

Please sign in to comment.