Skip to content

Commit

Permalink
slightly more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
auhlig committed Jun 19, 2024
1 parent ee67bd0 commit 4f7a5ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
- name: restrict action to labelled issues and issue comments
shell: bash
run: |
set -eux
set -eu
echo "NeedsJiraUpdate=false" >> $GITHUB_ENV
Expand Down Expand Up @@ -71,7 +71,7 @@ runs:
toconsider=true
fi
if [ "${toconsider}" == false ]; then
echo "Our desired label not found on issue or not unlabeled, skipping"
echo "Our desired label '${{ inputs.label }}' is not found on the issue, skipping"
exit 0
fi
Expand Down Expand Up @@ -142,7 +142,7 @@ runs:
"key": "${{ inputs.JIRA_PROJECT_KEY }}"
},
"summary": "${{ github.event.issue.title }}",
"description": "${{ steps.convert_markdown.outputs.description }}",
"description": ${{ steps.convert_markdown.outputs.description }},
"issuetype": {
"name": "${{ inputs.JIRA_ISSUE_TYPE }}"
},
Expand Down

0 comments on commit 4f7a5ba

Please sign in to comment.