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 00b5a6c commit d5f7c87Copy full SHA for d5f7c87
1 file changed
azure-pipelines.yml
@@ -130,3 +130,23 @@ stages:
130
failTaskOnFailedTests: true
131
condition: succeededOrFailed()
132
timeoutInMinutes: 20
133
+ # Run one step after the matrix so we don't have to list all the
134
+ # separate items in GitHub, and still are able to await the completion of the run
135
+ # before auto-merge is allowed.
136
+ - stage: Done
137
+ jobs:
138
+ - job: Done
139
+ workspace:
140
+ clean: all
141
+ steps:
142
+ - checkout: none
143
+ - task: PowerShell@2
144
+ displayName: 'All done'
145
+ inputs:
146
+ targetType: inline
147
+ pwsh: true
148
+ script: |
149
+ "done"
150
+ workingDirectory: '$(Build.SourcesDirectory)'
151
+
152
0 commit comments