Skip to content

Commit

Permalink
fix output changed
Browse files Browse the repository at this point in the history
  • Loading branch information
sarisia committed Sep 1, 2020
1 parent d215eaf commit b6ff9d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function run() {
core.setOutput('items', items);
core.setOutput('newlines', fnewLines);
core.setOutput('result', fresult);
core.setOutput('changed', markdown_1.isChanged(lines, result));
core.setOutput('changed', markdown_1.isChanged(lines, result) ? '1' : '0');
core.info('Done!');
});
}
Expand Down

0 comments on commit b6ff9d4

Please sign in to comment.