Skip to content

Commit 79e5600

Browse files
committed
ci: remove block step from buildkite script
The block-if-not-maintainer step should not be part of the generated pipeline, as someone might open a PR which removes it (exactly as this commit does) and, even worse, launch arbitrary stuff on our CI. I have already added the block step on buildkite pipeline directly, so this commit just removes the superfluous block step. Signed-off-by: Babis Chalios <bchalios@amazon.es>
1 parent d53cfe9 commit 79e5600

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

.buildkite/pipeline_pr.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ def group(group_name, command, agent_tags=None, priority=0, timeout=30):
4747
return {"group": group_name, "steps": steps}
4848

4949

50-
step_block_unless_maintainer = {
51-
"block": "Waiting for approval to run",
52-
"if": '(build.creator.teams includes "prod-compute-capsule") == false',
53-
}
54-
5550
step_style = {
5651
"command": "./tools/devtool -y test -- ../tests/integration_tests/style/",
5752
"label": "🪶 Style",
@@ -93,7 +88,6 @@ def group(group_name, command, agent_tags=None, priority=0, timeout=30):
9388
pipeline = {
9489
"agents": {"queue": "default"},
9590
"steps": [
96-
step_block_unless_maintainer,
9791
step_style,
9892
build_grp,
9993
functional_1_grp,

0 commit comments

Comments
 (0)