[SKP-82] 🍀 [Test] Github 이슈 생성시 Jira 이슈 동시 생성을 테스트 한다 (2) #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Jira issue | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
create-issue: | |
name: Create Jira issue | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login | |
uses: atlassian/gajira-login@v3 | |
env: | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
- name: Checkout main code | |
uses: actions/checkout@v4 | |
with: | |
ref: dev | |
- name: Issue Parser | |
uses: stefanbuck/github-issue-praser@v3 | |
id: issue-parser | |
with: | |
template-path: .github/ISSUE_TEMPLATE/custom.md | |
- name: Log Issue Parser | |
run: | | |
echo '${{ steps.issue-parser.outputs.issueparser_parentKey }}' | |
echo '${{ steps.issue-parser.outputs.__ticket_number }}' | |
echo '${{ steps.issue-parser.outputs.jsonString }}' | |
- name: Convert markdown to Jira Syntax | |
uses: peter-evans/jira2md@v1 | |
id: md2jira | |
with: | |
input-text: | | |
### Github Issue Link | |
- ${{ github.event.issue.html_url }} | |
${{ github.event.issue.body }} | |
mode: md2jira | |
- name: Create Issue | |
uses: atlassian/gajira-create@v3 | |
with: | |
project: SKP | |
issuetype: Task | |
summary: '${{ github.event.issue.title }}' | |
description: '${{ steps.md2jira.outputs.output-text }}' | |
- name: Create branch with Ticket number | |
run: | | |
ISSUE_NUMBER="${{ steps.create.outputs.issue }}" | |
ISSUE_TITLE="${{ steps.issue-parser.outputs.issueparser_branch}}" | |
BRANCH_NAME="${ISSUE_NUMBER}-$(echo ${ISSUE_TITLE} | sed 's/ /-/g')" | |
git checkout -b "${BRANCH_NAME}" | |
git push origin "${BRANCH_NAME}" | |
- name: Update issue title | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'update-issue' | |
token: ${{ secrets.GIT_TOKEN }} | |
title: '[${{ steps.create.outputs.issue }}] ${{ github.event.issue.title }}' | |