@theholocron/cli 3.29.1 → 3.29.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.mjs CHANGED
@@ -3347,7 +3347,7 @@ async function runSetup(input) {
3347
3347
  await source.updateRepoSettings(BALANCED_REPO_SETTINGS);
3348
3348
  }));
3349
3349
  print(formatStep(steps[steps.length - 1]));
3350
- const configuredWorkflowNames = (config.workflows ?? []).map((entry) => typeof entry === "string" ? entry : entry.name);
3350
+ const configuredWorkflowNames = [...new Set((config.workflows ?? []).map((entry) => typeof entry === "string" ? entry : entry.name))];
3351
3351
  const requiredChecks = effectivePreset === "strict" ? [
3352
3352
  "DCO",
3353
3353
  ...configuredWorkflowNames.flatMap((name) => {