Skip to content

TK-121 shared-payments-publishing #13

TK-121 shared-payments-publishing

TK-121 shared-payments-publishing #13

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: main
- name: Issue Parser
uses: stefanbuck/github-issue-praser@v3
id: issue-parser
with:
template-path: .github/ISSUE_TEMPLATE/issue_form.yml
- name: Log Issue Parser
run: |
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
id: create
uses: atlassian/gajira-create@v3
with:
project: TK
issuetype: Subtask
summary: "${{ github.event.issue.title }}"
description: "${{ steps.md2jira.outputs.output-text }}"
fields: |
{
"parent": {
"key": "${{ steps.issue-parser.outputs.issueparser_parentKey }}"
}
}
- name: Log created issue
run: echo "Jira Issue ${{ steps.issue-parser.outputs.parentKey }}/${{ steps.create.outputs.issue }} was created"
- name: Checkout develop code
uses: actions/checkout@v4
with:
ref: dev
- name: Create branch with Ticket number
run: |
# GitHub 이슈 제λͺ©μ—μ„œ 특수 문자 제거 및 곡백을 ν•˜μ΄ν”ˆμœΌλ‘œ λ³€κ²½
CLEANED_TITLE=$(echo "${{ github.event.issue.title }}" | LC_CTYPE=C sed 's/[^a-zA-Z0-9κ°€-힣 ]//g' | sed 's/ /-/g')
BRANCH_NAME="feat/${{ steps.create.outputs.issue }}-${CLEANED_TITLE}"
# 브랜치 생성 및 push
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.GITHUB_TOKEN }}
title: "${{ steps.create.outputs.issue }} ${{ github.event.issue.title }}"