Skip to content

Commit

Permalink
Fix typo in merge-queue stage condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelishman authored Jan 16, 2024
1 parent 95d2a38 commit 128be76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ stages:
# There's no reason to have multiple stages in this case, because we're
# expecting it to pass. Having more than one stage frustrates parallel
# throughput in low-contention cases, and guarantees a longer critical path.
- ${{ if and(eq(variables['Build.Reason'], 'IndividualCI'), startsWith(variables['Build.SourceBranch'], 'refs/heads/gh-merge-queue')) }}:
- ${{ if and(eq(variables['Build.Reason'], 'IndividualCI'), contains(variables['Build.SourceBranch'], 'gh-readonly-queue')) }}:
- stage: "Merge_Queue"
displayName: "Merge queue"
jobs:
Expand Down

0 comments on commit 128be76

Please sign in to comment.