Skip to content

Commit 4f7a5ba

Browse files
committed
slightly more logging
1 parent ee67bd0 commit 4f7a5ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
- name: restrict action to labelled issues and issue comments
4343
shell: bash
4444
run: |
45-
set -eux
45+
set -eu
4646
4747
echo "NeedsJiraUpdate=false" >> $GITHUB_ENV
4848
@@ -71,7 +71,7 @@ runs:
7171
toconsider=true
7272
fi
7373
if [ "${toconsider}" == false ]; then
74-
echo "Our desired label not found on issue or not unlabeled, skipping"
74+
echo "Our desired label '${{ inputs.label }}' is not found on the issue, skipping"
7575
exit 0
7676
fi
7777
@@ -142,7 +142,7 @@ runs:
142142
"key": "${{ inputs.JIRA_PROJECT_KEY }}"
143143
},
144144
"summary": "${{ github.event.issue.title }}",
145-
"description": "${{ steps.convert_markdown.outputs.description }}",
145+
"description": ${{ steps.convert_markdown.outputs.description }},
146146
"issuetype": {
147147
"name": "${{ inputs.JIRA_ISSUE_TYPE }}"
148148
},

0 commit comments

Comments
 (0)