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 e1363c1 commit 0c2c4b8Copy full SHA for 0c2c4b8
src/steps/index.ts
@@ -44,14 +44,15 @@ export async function run(
44
payload,
45
};
46
const required_contexts = parseOptionalStringArrayInput("required_contexts")
47
- if (required_contexts !== undefined) {
48
- start_args["required_contexts"] = required_contexts;
49
- };
+ // if (required_contexts !== undefined) {
+ // start_args["required_contexts"] = required_contexts;
+ // };
50
const stepArgs: StartArgs = start_args;
51
log.debug(`'${step}' arguments`, {
52
stepArgs,
53
coreArgs,
54
});
55
+ log.debug(`and required_contexts: ${required_contexts}`)
56
const { deploymentID, statusID } = await createStart(
57
github,
58
context,
0 commit comments