Skip to content

Commit

Permalink
Chore: Add creating new branch with Jira Ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
seungheon123 committed Apr 30, 2024
1 parent ee479be commit 48822ab
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/create-jira-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,16 @@ jobs: # 3
project: Momo
issuetype: Task
summary: '${{ github.event.issue.title }}'
description: '${{ github.event.issue.html_url }}'
description: '${{ github.event.issue.html_url }}'

- name: Create branch with Ticket number
run: |
git checkout -b ${{ steps.create.outputs.issue }}
git push origin ${{ steps.create.outputs.issue }}
- name: Update issue title
uses: actions-cool/issues-helper@v3
with:
actions: "update-issue"
token: ${{ secrets.GITHUB_TOKEN }}
title: "${{ steps.create.outputs.issue }} ${{ github.event.issue.title }}"

0 comments on commit 48822ab

Please sign in to comment.