Skip to content

[feature] - 고용주 지원자 상태 상세 페이지 구현하기 #24

[feature] - 고용주 지원자 상태 상세 페이지 구현하기

[feature] - 고용주 지원자 상태 상세 페이지 구현하기 #24

Workflow file for this run

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: Create Issue
uses: atlassian/gajira-create@v3
with:
project: IGW
issuetype: Task
summary: "${{ github.event.issue.title }}"
description: "${{ github.event.issue.html_url }}"