chore: add github link to autogenerated issue (#445)

Added a link back to the original Github issue from which the Jira issue was created for tracking purposes.
This commit is contained in:
qued 2023-04-05 10:03:30 -05:00 committed by GitHub
parent 3972c80c51
commit 92aac29cab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,22 +10,22 @@ jobs:
runs-on: ubuntu-latest
name: Create JIRA Issue
steps:
- name: Login
- name: Login to Jira
uses: atlassian/gajira-login@v3
env:
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
- name: Create
- name: Create Jira issue
uses: atlassian/gajira-create@v3
with:
project: CORE
issuetype: Task
summary: ${{ github.event.issue.title }}
description: ${{ github.event.issue.body }}
description: "Created from Github issue: ${{ github.event.issue.url }} \\ \\${{ github.event.issue.body }}"
fields: '{ "labels": ["github-issue"] }'
- name: Log created issue
run: echo "Issue ${{ steps.create.outputs.issue }} was created"