Change default Jira issue type to "Unsorted"

This commit is contained in:
Marquis Kurt 2019-11-23 12:52:25 -05:00
parent 3c8c54dc96
commit 33a2c2468c
No known key found for this signature in database
GPG Key ID: 725636D259F5402D
1 changed files with 20 additions and 19 deletions

View File

@ -1,25 +1,26 @@
name: Create issue on Jira name: Create issue on Jira
on: on:
issues: issues:
types: [opened] types: [opened]
jobs: jobs:
jira: jira:
runs-on: ubuntu-latest
runs-on: ubuntu-latest steps:
- name: Jira Login
steps: id: login
- name: Jira Login uses: atlassian/gajira-login@v2.0.0
uses: atlassian/gajira-login@v2.0.0 env:
env: JIRA_BASE_URL: "https://hyperspacedev.atlassian.net"
JIRA_BASE_URL: "https://hyperspacedev.atlassian.net" JIRA_USER_EMAIL: software@marquiskurt.net
JIRA_USER_EMAIL: software@marquiskurt.net JIRA_API_TOKEN: ${{ secrets.JIRA_TOKEN }}
JIRA_API_TOKEN: ${{ secrets.JIRA_TOKEN }} - name: Jira Create issue
- name: Jira Create issue id: create
uses: atlassian/gajira-create@v2.0.0 uses: atlassian/gajira-create@v2.0.0
with: with:
project: HD project: HD
issuetype: Task issuetype: Unsorted
summary: ${{ github.event.issue.title }} summary: ${{ github.event.issue.title }}
description: ${{ github.event.issue.body }} description: ${{ github.event.issue.body }}