We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0de6230 commit ba1da34Copy full SHA for ba1da34
1 file changed
.github/workflows/csharp-test.yml
@@ -25,7 +25,8 @@ jobs:
25
--status in_progress \
26
--json status \
27
| jq 'length')
28
- if [ "$running" -lt 2 ]; then
+ # Use `-le` because this job itself counts as one.
29
+ if [ "$running" -le 2 ]; then
30
echo "Allowed to run"
31
break
32
fi
0 commit comments