From b16d4b696986ef54658d51f26e5859cb9ff1071d Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Wed, 6 Nov 2019 11:19:07 -0500 Subject: [PATCH] Update and rename main.yml to jira-create.yml --- .github/workflows/jira-create.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/jira-create.yml diff --git a/.github/workflows/jira-create.yml b/.github/workflows/jira-create.yml new file mode 100644 index 0000000..e0759ae --- /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: 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 }}