Skip to content

Commit

Permalink
feat: update cicd readme [HOOK FAIL OK]
Browse files Browse the repository at this point in the history
  • Loading branch information
batleforc committed Aug 23, 2024
1 parent d2f9976 commit 3f72e67
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions cicd/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,12 @@ flowchart TD;
A([Write code in a new branch]) --> B[Create a Pull Request];
end
subgraph "Test flow"
B --> C[PR is tested by Github Actions];
C -- If Github Action is ok --> D[Run the Test flow];
D -- If test nok --> E[PR is locked with information];
B --> C{Test Start};
C --> GA[Test by Github Actions]
C --> TKT[Test flow by Tekton];
GA --> D{Test ok?};
TKT --> D;
D -- If test nok --> E[PR is updated with information];
end
subgraph "Release flow"
D -- If test ok --> F[PR is merged into the `main` branch];
Expand All @@ -68,4 +71,10 @@ flowchart TD;
- [ ] Create a Helm chart for the backend/frontend
- [ ] Build the Frontend/Backend
- [ ] Check if the Frontend/Backend helm chart is Okay <https://hub.tekton.dev/tekton/task/pluto>
- [ ] Check secret <https://hub.tekton.dev/tekton/task/kube-linter>
- [ ] Check secret <https://hub.tekton.dev/tekton/task/kube-linter>

## Github Events to listen

- [ ] Pull Request "opened, synchronized"
- [ ] Push on the `main` branch
- [ ] Tag created

0 comments on commit 3f72e67

Please sign in to comment.