From 92aac29cabb25cde68ab53e23247b382bdacfa99 Mon Sep 17 00:00:00 2001 From: qued <64741807+qued@users.noreply.github.com> Date: Wed, 5 Apr 2023 10:03:30 -0500 Subject: [PATCH] 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. --- .github/workflows/create_issue.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create_issue.yml b/.github/workflows/create_issue.yml index 354b9f5df..bbed9ea00 100644 --- a/.github/workflows/create_issue.yml +++ b/.github/workflows/create_issue.yml @@ -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"