Skip to content

Commit

Permalink
test skippable set by forcing the skip
Browse files Browse the repository at this point in the history
  • Loading branch information
delanni committed Jul 19, 2024
1 parent 3b607b3 commit 6fa5c99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/scripts/pipelines/pull_request/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const getPipeline = (filename: string, removeSteps = true) => {
try {
const skippable = await areChangesSkippable(SKIPPABLE_PR_MATCHERS, REQUIRED_PATHS);

if (skippable) {
if (skippable || true) {
// Since we skip everything, including post-build, we need to at least make sure the commit status gets set
execSync('BUILD_SUCCESSFUL=true .buildkite/scripts/lifecycle/commit_status_complete.sh', {
stdio: 'inherit',
Expand Down

0 comments on commit 6fa5c99

Please sign in to comment.