[REFACTOR]: 설문 응답 행사 텍스트 Vertical 가운데 정렬 및 프로필 더보기 이미지 가운데 정렬 #76
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: Jira 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: Create Issue | |
uses: atlassian/gajira-create@v3 | |
with: | |
project: WAPP | |
issuetype: Task | |
summary: '${{ github.event.issue.title }}' | |
description: '${{ github.event.issue.body }}' | |