sonic-buildimage/.github/workflows
Liu Shilong 2fac7e31e1 [action] Keep 'request for xxx branch' label when finished auto-cherry-pick. (#13107)
Why I did it
To keep 'Request for xxx branch' label when finished auto-cherry-pick.

How I did it
Change logic in post cherry pick action.

How to verify it
2023-01-12 23:30:24 +00:00
..
automerge.yml [actions] Fix automerge actions don't work issue. (#11671) 2022-08-10 11:53:58 +08:00
codeql-analysis.yml [action] Use pull_request_target trigger instead to avoid codeQL check approval (#12509) (#12541) 2022-11-01 10:25:22 +08:00
label.yml [actions] Remove approve step in label action. (#11968) 2022-09-05 14:56:22 +08:00
pr_cherrypick_poststep.yml [action] Keep 'request for xxx branch' label when finished auto-cherry-pick. (#13107) 2023-01-12 23:30:24 +00:00
pr_cherrypick_prestep.yml [actions] Add auto cherry-pick actions to release branch (#11496) (#12336) 2022-10-10 17:22:13 +08:00
README.md [actions] Add auto cherry-pick actions to release branch (#11496) (#12336) 2022-10-10 17:22:13 +08:00

Github actions README

This is an introduction about auto-cherry-pick workflow. take 202205 branch for example:

  1. pr_cherrypick_prestep:
graph
Start(Origin PR) --> A{merged?}
A -- NO --> STOP
A -- YES --> A1{Approved<br> for 202205<br> Branch?}
A1 -- NO --> STOP
A1 -- YES --> A2(pr_cherrypick_prestep)
B(pr_cherrypick_prestep)
B --> B1{cherry pick<br>conflict?}
B1 -- YES --> B2(Add tag:<br>Cherry Pick Confclit_202205) --> B3(Add comment:<br>refer author code conflict) --> STOP1(STOP)
B1 -- NO --> B4(Create New PR) -- success --> B5(New PR add tag:<br> automerge) --> B6(New PR add comment:<br>Origin PR link) --> B7(Origin PR add tag:<br>Created PR to 202205 Branch) --> B8(Origin PR add comment:<br>New PR link)
B4 -- fail --> STOP1
  1. automerge:
graph
Start(PR azp finished successfully) --> A{author:<br>mssonicbld?}
A -- NO --> STOP
A -- YES --> B{tag:<br>automerge?} -- YES --> C(Merge PR)
B -- NO --> STOP
  1. pr_cherrypick_poststep:
graph
A(PR is Merged) --> B{tag:<br>automerge?}
B -- YES --> B1{author:<br>mssonicbld?}
B1 -- YES --> B2{"title starts:<br>[action] [PR:123]"}
B2 -- YES --> C(Origin PR remove tag:<br> Created PR to 202205 Branch) --> D(Origin PR add tag:<br> Included in 202205 Branch)
B -- NO --> STOP
B1 -- NO --> STOP
B2 -- NO --> STOP