Skip to content

Commit 7b50295

Browse files
Modify test script calls in merge queue workflow
Updated test script calls to run without fail conditions.
1 parent 5558e6e commit 7b50295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/merge-queue-demo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
1414
- name: Run Unit Test
15-
run: ./scripts/test.sh fail
15+
run: ./scripts/test.sh
1616

1717
# Scenario: Job that only runs in the Merge Queue (e.g., expensive integration tests)
1818
merge-queue-exclusive:
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
4747
- name: Run Flaky Test
4848
# Change 'pass' to 'flaky' to simulate flakiness
49-
run: ./scripts/test.sh flaky
49+
run: ./scripts/test.sh pass
5050

5151
# Scenario: Semantic Conflict Simulation
5252
# This job checks a version file. If two PRs change it incompatibly, this fails.

0 commit comments

Comments
 (0)