Skip to content

Commit

Permalink
fix command injection problem
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-c4t committed Sep 5, 2024
1 parent 0879af8 commit 5e0e518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/duplicate_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
repositories: "camino-private-issues"
- name: Generate Private Issue
run: |
cat > issue.md<<- EOM
cat > issue.md<<- 'EOM'
${{ github.event.issue.body }}
---
Expand All @@ -27,7 +27,7 @@ jobs:
* https://github.com/chain4travel/camino-public-issues/issues/${{ github.event.issue.number }}
EOM
ISSUE_BODY=$(cat issue.md)
cat > title.md<<- EOM
cat > title.md<<- 'EOM'
${{ github.event.issue.title }}
EOM
TITLE=$(cat title.md)
Expand Down

0 comments on commit 5e0e518

Please sign in to comment.