Skip to content

Commit 40866ee

Browse files
committed
fix line break
1 parent 54c5e44 commit 40866ee

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

dist/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ function run() {
9191
});
9292
core.info(output);
9393
output = removeStarLines(output);
94-
output = output.replace(/%/g, '%25');
95-
output = output.replace(/\n/g, '%0A');
96-
output = output.replace(/\r/g, '%0D');
9794
core.info(output);
9895
core.setOutput("diff", output);
9996
});

src/main.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ async function run(): Promise<void> {
5959

6060
core.info(output)
6161
output = removeStarLines(output)
62-
output = output.replace(/%/g, '%25')
63-
output = output.replace(/\n/g, '%0A')
64-
output = output.replace(/\r/g, '%0D')
65-
6662
core.info(output)
6763

6864
core.setOutput("diff", output)

0 commit comments

Comments
 (0)