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 47148cb commit 1ed650cCopy full SHA for 1ed650c
dist/index.js
@@ -8199,7 +8199,7 @@ function run() {
8199
core.setOutput('issue_number', output.issueNumber.toString());
8200
}
8201
catch (error) {
8202
- core.debug(error.stack);
+ core.error(error.stack);
8203
core.setFailed(error.message);
8204
8205
});
src/index.ts
@@ -42,7 +42,7 @@ async function run() {
42
core.setOutput('issue_number', output.issueNumber.toString())
43
44
} catch (error) {
45
- core.debug(error.stack)
+ core.error(error.stack)
46
core.setFailed(error.message)
47
48
0 commit comments