Skip to content

Commit

Permalink
Merge pull request #37 from jmetrikat/gh-4-fix-scripts-to-properly-tr…
Browse files Browse the repository at this point in the history
…eat-special-symbols-in-issue-body

GH-4 Fix scripts to properly treat special symbols in the issue body
  • Loading branch information
fuksman authored Jan 28, 2024
2 parents a32390b + 14681cd commit 498971e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/parse-new-experience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
with:
template-path: .github/ISSUE_TEMPLATE/new_experience.yml
- name: Create issue.json
run: echo '${{ steps.issue-parser.outputs.jsonString }}' > issue.json
run: |
cat <<EOF > issue.json
${{ steps.issue-parser.outputs.jsonString }}
EOF
- name: Check length restriction for title and description
id: check-restrictions
run: |
Expand Down

0 comments on commit 498971e

Please sign in to comment.