Skip to content

Commit d5f7c87

Browse files
committed
Add 'Done' stage to pipeline
1 parent 00b5a6c commit d5f7c87

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

azure-pipelines.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,23 @@ stages:
130130
failTaskOnFailedTests: true
131131
condition: succeededOrFailed()
132132
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

Comments
 (0)