diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 7e10e14..ed4dc4f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @alicerunsonfedora @Nomad1556 @Bio-ico +* @hyperspacedev/administration @hyperspacedev/desktop diff --git a/.github/workflows/jira-create.yml b/.github/workflows/jira-create.yml new file mode 100644 index 0000000..514090d --- /dev/null +++ b/.github/workflows/jira-create.yml @@ -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 }}