Skip to content

Commit 7a60cda

Browse files
committed
chore: fix output
1 parent ee59416 commit 7a60cda

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/pgschema-multifile-plan.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ jobs:
6969
script: |
7070
const planOutput = `${{ steps.plan.outputs.plan }}`;
7171
72-
// Decode the escaped output
73-
const decodedOutput = decodeURIComponent(planOutput);
72+
const decodedOutput = planOutput;
7473
7574
const body = `## pgschema Plan Output
7675

.github/workflows/pgschema-singlefile-plan.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ jobs:
7070
script: |
7171
const planOutput = `${{ steps.plan.outputs.plan }}`;
7272
73-
// Decode the escaped output
74-
const decodedOutput = decodeURIComponent(planOutput);
73+
const decodedOutput = planOutput;
7574
7675
const body = `## pgschema Plan Output
7776

0 commit comments

Comments
 (0)