Skip to content

Commit

Permalink
fix stdin
Browse files Browse the repository at this point in the history
  • Loading branch information
Ikuni17 committed Dec 17, 2024
1 parent c2fc95b commit 8fe66c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .buildkite/scripts/pipelines/pull_request/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,13 @@ const getPipeline = (filename: string, removeSteps = true) => {
}

pipeline.push(getAgentImageConfig({ returnYaml: true }));

const onlyRunQuickChecks = true; // await areChangesSkippable([/^renovate\.json$/], REQUIRED_PATHS);
if (onlyRunQuickChecks) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/renovate.yml', false));
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/post_build.yml'));
console.log('Isolated changes to renovate.json. Skipping main PR pipeline.');
// console.log('Isolated changes to renovate.json. Skipping main PR pipeline.');
console.log([...new Set(pipeline)].join('\n'));
return;
}

Expand Down

0 comments on commit 8fe66c3

Please sign in to comment.