From 9cb9558dcb98a6bbe4150783814d0910380babcf Mon Sep 17 00:00:00 2001 From: MazOneTwoOne <76905544+MazOneTwoOne@users.noreply.github.com> Date: Fri, 4 Oct 2024 09:30:12 +0100 Subject: [PATCH] - first step of doing 1:1 creating of ticket --- .github/workflows/gajira.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gajira.yml b/.github/workflows/gajira.yml index 89d16069c..ab4272757 100644 --- a/.github/workflows/gajira.yml +++ b/.github/workflows/gajira.yml @@ -23,10 +23,9 @@ jobs: run: | repo_name=$(echo "$GITHUB_REPOSITORY" | cut -d'/' -f2 | sed 's/ *(.*)//') pr_body="${{ github.event.pull_request.body }}" - stripped_body=$(echo "$pr_body" | sed 's/<[^>]*>//g') echo "repo_name=$repo_name" >> $GITHUB_ENV - echo "stripped_body=$stripped_body" >> $GITHUB_ENV + echo "pr_body=$pr_body" >> $GITHUB_ENV - name: Create Jira ticket id: create @@ -35,4 +34,4 @@ jobs: project: EL issuetype: Task summary: "Dependabot: - ${{ env.repo_name }} - ${{ github.event.pull_request.title }}" - description: ${{ env.stripped_body }} \ No newline at end of file + description: ${{ env.pr_body }} \ No newline at end of file