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