Skip to content

Commit 747d2cc

Browse files
committed
Update workflow spec since default behavior is OR and not AND as I
assumed.
1 parent 0d2a5d9 commit 747d2cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ on:
77
# We only run this workflow if both test workflows complete successfully
88
workflow_run:
99
workflows:
10-
- "Lint and Tests"
10+
# TODO: We can't depend on two workflows using "AND" condition (aka both workflows need to
11+
# pass), so we just depend on the longer one. When specifying multiple workflows it uses
12+
# "OR" behavior.
1113
- "End to End Tests"
1214
branches:
1315
- main

0 commit comments

Comments
 (0)