Merge changes from master

Signed-off-by: Marquis Kurt <software@marquiskurt.net>
This commit is contained in:
Marquis Kurt 2019-11-06 11:56:21 -05:00
commit f9945250ed
No known key found for this signature in database
GPG Key ID: 725636D259F5402D
2 changed files with 26 additions and 1 deletions

2
.github/CODEOWNERS vendored
View File

@ -1 +1 @@
* @alicerunsonfedora @Nomad1556 @Bio-ico
* @hyperspacedev/administration @hyperspacedev/desktop

25
.github/workflows/jira-create.yml vendored Normal file
View File

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