Skip to content

Commit

Permalink
Update environment variables usage in JIRA actions (#1071)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-turbaszek authored May 15, 2024
1 parent d059d85 commit 7d34b3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jira_close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
env:
TITLE: "${{ github.event.issue.title }}"
run: |
jira=$(echo -n $TITLE | awk '{print $1}' | sed -e 's/://')
jira=$(echo -n "${TITLE}" | awk '{print $1}' | sed -e 's/://')
echo ::set-output name=jira::$jira
- name: Close issue
uses: ./jira/gajira-close
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jira_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
env:
TITLE: "${{ github.event.issue.title }}"
run: |
jira=$(echo -n $TITLE | awk '{print $1}' | sed -e 's/://')
jira=$(echo -n "${TITLE}" | awk '{print $1}' | sed -e 's/://')
echo ::set-output name=jira::$jira
- name: Comment on issue
uses: atlassian/gajira-comment@master
Expand Down

0 comments on commit 7d34b3f

Please sign in to comment.