We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54c5e44 commit 40866eeCopy full SHA for 40866ee
dist/index.js
@@ -91,9 +91,6 @@ function run() {
91
});
92
core.info(output);
93
output = removeStarLines(output);
94
- output = output.replace(/%/g, '%25');
95
- output = output.replace(/\n/g, '%0A');
96
- output = output.replace(/\r/g, '%0D');
97
98
core.setOutput("diff", output);
99
src/main.ts
@@ -59,10 +59,6 @@ async function run(): Promise<void> {
59
60
core.info(output)
61
output = removeStarLines(output)
62
- output = output.replace(/%/g, '%25')
63
- output = output.replace(/\n/g, '%0A')
64
- output = output.replace(/\r/g, '%0D')
65
-
66
67
68
core.setOutput("diff", output)
0 commit comments