We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b86ee49 commit 23cacdbCopy full SHA for 23cacdb
azure-pipelines.yml
@@ -136,19 +136,22 @@ jobs:
136
condition: >-
137
or(
138
and(
139
- succeeded(),
+ not(or(failed(), canceled()),
140
startsWith(variables['Build.SourceBranch'], 'refs/heads/main'),
141
eq(variables['StartReleaseCandidate'], 'false')
142
),
143
144
145
eq(variables['System.PullRequest.PullRequestId'], ''),
146
contains(variables['Build.SourceVersionMessage'], '***UPDATE_DEPENDENTS***'),
147
148
149
eq(variables['UPDATE_DEPENDENTS'], 'true')
150
)
151
152
+ dependsOn:
153
+ - Build_mscorlib
154
+
155
pool:
156
vmImage: 'windows-latest'
157
0 commit comments