Skip to content

Commit

Permalink
Merge pull request #39 from kaitj/maint/actions-case-sensitivity
Browse files Browse the repository at this point in the history
Update sed to be case-insensitive to code block
  • Loading branch information
effigies authored Dec 12, 2024
2 parents ee506de + c013c01 commit a544563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/checklist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
if: steps.check_labels.outputs.result == 'true'
run: |
issue_body='${{ github.event.issue.body }}'
checklist=$(echo "$issue_body" | sed -n '/```json/,/```/p' | sed '1d;$d')
checklist=$(echo "$issue_body" | sed -n '/```json/I,/```/p' | sed '1d;$d')
name=$(echo "$checklist" | jq -r '.name' | sed 's/ /_/g')
echo "checklist=$(echo $checklist)" >> $GITHUB_ENV
echo "name=$(echo $name)" >> $GITHUB_ENV
Expand Down

0 comments on commit a544563

Please sign in to comment.