We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 256cf74 commit b244638Copy full SHA for b244638
.github/workflows/npm-publish.yml
@@ -63,7 +63,10 @@ jobs:
63
const pending = checkSuites.filter(({ status }) => status !== 'completed')
64
65
if (pending.length > 0) {
66
- core.setFailed(`Some workflows for ${context.payload.inputs.tag} are still in-progress: ${JSON.stringify(pending)}`);
+ core.setFailed(`Some workflows for ${context.payload.inputs.tag} are still in-progress`);
67
+ pending.forEach(({ pull_requests, ...x }) => {
68
+ core.debug(JSON.stringify(x));
69
+ });
70
}
71
72
const result = await Promise.all(
0 commit comments