CLAP-310 회원 정보 수정 API request email 필드 삭제 및 회원 등록 API 닉네임/이메일 중복 체크 추가 #181
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 Bug issue | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
create-issue: | |
name: Create Jira issue | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if issue uses Bug template | |
id: check_template | |
run: | | |
BODY="${{ github.event.issue.body }}" | |
if [[ $BODY == *"Bug 상위 작업 Ticket Number"* ]]; then | |
echo "is_bug_template=true" >> $GITHUB_OUTPUT | |
else | |
echo "is_bug_template=false" >> $GITHUB_OUTPUT | |
fi | |
- name: Exit if not bug template | |
if: steps.check_template.outputs.is_bug_template != 'true' | |
run: exit 0 | |
- 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/bug_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: CLAP | |
issuetype: 버그 | |
summary: "[BE] ${{ 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: develop | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Create branch with Ticket number | |
run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
git checkout -b ${{ steps.create.outputs.issue }} | |
git push origin ${{ steps.create.outputs.issue }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | |
- name: Update issue title | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: "update-issue" | |
token: ${{ secrets.PAT_TOKEN }} | |
title: "${{ steps.create.outputs.issue }} ${{ github.event.issue.title }}" |