Skip to content

Commit

Permalink
✨ feat: jira와 github issue 연결하기
Browse files Browse the repository at this point in the history
  • Loading branch information
naarang committed Oct 15, 2024
1 parent b15f53b commit 466a6b8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/jira.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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 }}"

0 comments on commit 466a6b8

Please sign in to comment.