Update README.md

This commit is contained in:
Matt Reeves 2024-06-16 02:38:39 -04:00
parent f69248e730
commit 610869eae2

View file

@ -283,18 +283,12 @@ graph TD
D -- No --> E(End) D -- No --> E(End)
subgraph Handle Merged PR subgraph Handle Merged PR
D -- Yes --> F[Extract App Name] D -- Yes --> F[Extract Host]
F --> G[SSH to Host Machine] F --> G[SSH to Host Machine]
G --> H[Git Pull & Docker Compose Up] G --> H[Git Pull & Docker Compose Up]
H --> I{Error?} H --> I(End)
I -- Yes --> J[Send Gotify Notification]
J --> K(End)
I -- No --> L[Extract PR Number]
L --> M[Add PR Number to Forgejo API URL]
M --> N[Send Review with Logs]
N --> O(End)
end end
subgraph Notification on PR Creation subgraph Notification on PR Creation
B --> P[Notify via Gotify] B --> P[Notify via Gotify]
end end
@ -304,13 +298,13 @@ graph TD
R -- No --> S(End) R -- No --> S(End)
R -- Yes --> T[Hit GitHub API for Release Notes] R -- Yes --> T[Hit GitHub API for Release Notes]
T --> U[Extract PR Number from webhook] T --> U[Extract PR Number from webhook]
U --> V[API Call to Foregjo] U --> W[API Call to Foregjo to leave Release Notes]
V --> W[Leave Release Notes as Comment]
W --> S W --> S
end end
P --> Q P --> Q
``` ```
## To-Do ## To-Do