Skip to content

Commit 965abf2

Browse files
committed
Remove echo
1 parent fff3b3c commit 965abf2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/gajira.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,17 @@ jobs:
2020
- name: Process PR data
2121
id: process_pr_data
2222
run: |
23-
2423
pr_body="${{ github.event.pull_request.body }}"
2524
stripped_body=$("$pr_body" | sed 's/<[^>]*>//g')
2625
27-
echo "repo_name=$(basename ${{ github.repository }})" >> $GITHUB_ENV
28-
echo "stripped_body='$stripped_body'" >> $GITHUB_ENV
26+
"repo_name=$(basename ${{ github.repository }})" >> $GITHUB_ENV
27+
"stripped_body='$stripped_body'" >> $GITHUB_ENV
2928
3029
- name: Create
3130
id: create
3231
uses: atlassian/gajira-create@master
3332
with:
3433
project: LGA
3534
issuetype: Task
36-
summary: "[Snyk] - $(basename ${{ github.repository }}) - ${{ github.event.pull_request.title }}"
35+
summary: "[Snyk] - ${{ env.repo_name }} - ${{ github.event.pull_request.title }}"
3736
description: ${{ env.stripped_body }}

0 commit comments

Comments
 (0)