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 bea4f70 commit ff26ae1Copy full SHA for ff26ae1
dist/index.js
@@ -557,7 +557,9 @@ function run() {
557
if (listResp.status != 200)
558
throw new Error(`Got HTTP ${listResp.status} calling list workflows API 💩`);
559
// Debug response if ACTIONS_STEP_DEBUG is enabled
560
+ core.debug('### START List Workflows response data');
561
core.debug(listResp.data);
562
+ core.debug('### END: List Workflows response data');
563
// Locate workflow by name as we need it's id
564
const foundWorkflow = listResp.data.workflows.find((wf) => {
565
// Match on name or id
0 commit comments