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 c875d6f commit bea4f70Copy full SHA for bea4f70
src/main.ts
@@ -29,7 +29,9 @@ async function run(): Promise<void> {
29
if(listResp.status != 200) throw new Error(`Got HTTP ${listResp.status} calling list workflows API 💩`)
30
31
// Debug response if ACTIONS_STEP_DEBUG is enabled
32
+ core.debug('### START List Workflows response data')
33
core.debug(listResp.data)
34
+ core.debug('### END: List Workflows response data')
35
36
// Locate workflow by name as we need it's id
37
const foundWorkflow = listResp.data.workflows.find((wf: Record<string, string>) => {
0 commit comments