Skip to content

Commit 92aac29

Browse files
authored
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.
1 parent 3972c80 commit 92aac29

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/create_issue.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ jobs:
1010
runs-on: ubuntu-latest
1111
name: Create JIRA Issue
1212
steps:
13-
- name: Login
13+
14+
- name: Login to Jira
1415
uses: atlassian/gajira-login@v3
1516
env:
1617
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
1718
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
1819
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
1920

20-
- name: Create
21+
- name: Create Jira issue
2122
uses: atlassian/gajira-create@v3
2223
with:
2324
project: CORE
2425
issuetype: Task
2526
summary: ${{ github.event.issue.title }}
26-
description: ${{ github.event.issue.body }}
27+
description: "Created from Github issue: ${{ github.event.issue.url }} \\ \\${{ github.event.issue.body }}"
2728
fields: '{ "labels": ["github-issue"] }'
2829

29-
3030
- name: Log created issue
3131
run: echo "Issue ${{ steps.create.outputs.issue }} was created"

0 commit comments

Comments
 (0)