Skip to content

Commit c8e8367

Browse files
[fix] YAML syntax error in sync workflow
Fixed template literal escaping in GitHub Actions script
1 parent f72c464 commit c8e8367

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sync-rfc-discussion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
with:
9494
script: |
9595
const discussionId = '${{ steps.find-discussion.outputs.discussion_id }}';
96-
const rfcContent = `${{ steps.get-rfc-content.outputs.content }}`;
96+
const rfcContent = '${{ steps.get-rfc-content.outputs.content }}';
9797
const mdFile = '${{ steps.changed-files.outputs.filename }}';
9898
9999
const newBody = `# RFC Discussion: ${{ github.event.pull_request.title }}

0 commit comments

Comments
 (0)