backport github actions breaking change fix

This commit is contained in:
Jonathan Shook
2020-12-07 13:41:27 -06:00
parent 3f4d130496
commit 040db4782f
23 changed files with 2794 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
@startuml
Participant user as u
Participant client as c
Participant resource as cr
Participant server as s
group responsetime
u -> c: request
activate c #Black
' note left of c: user\nwaits\nfor\nresponse
group waittime
c -> cr: wait
activate cr #Yellow
note right of cr: client\nwaits\nfor\nresource
cr -> c:
deactivate cr
end
group servicetime
c ->> s: request
activate s #Blue
note right of s: server\nprocesses\nrequest
s ->> c: response
deactivate s
end
c -> u: response
deactivate c
end
@enduml