Skip to content

Commit

Permalink
Chore: Create Jira Issue using Git action
Browse files Browse the repository at this point in the history
  • Loading branch information
seungheon123 committed Apr 30, 2024
1 parent d83e12d commit ee479be
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/create-jira-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Create Jira issue # 1
on: # 2
issues:
types: [opened]

jobs: # 3
create-issue: # 4
name: Create Jira issue # 5
runs-on: ubuntu-latest # 6
steps: # 7
- name: Login
uses: atlassian/gajira-login@v3 # 8
env: # 9
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: Momo
issuetype: Task
summary: '${{ github.event.issue.title }}'
description: '${{ github.event.issue.html_url }}'

0 comments on commit ee479be

Please sign in to comment.