Home
last modified time | relevance | path

Searched refs:labelName (Results 1 – 2 of 2) sorted by relevance

/expo/tools/src/commands/
H A DValidateIssueCommand.ts86 const labelName = typeof label === 'string' ? label : label.name; constant
87 if (labelName && labelName === 'needs validation') {
95 } else if (labelName && SKIP_VALIDATION_LABELS.includes(labelName)) {
96 console.log(`Issue is labeled with ${labelName}, skipping validation.`);
/expo/tools/src/
H A DLinear.ts33 labelName: string,
36 const filter: IssueLabelFilter = { name: { eq: labelName } };
46 const payload = await linearClient.createIssueLabel({ name: labelName });
50 throw new Error(`Failed to create Linear label: ${labelName}`);