Skip to content

Commit 3f39039

Browse files
committed
doc(ci-cd): add links to workflows implementation
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
1 parent 7f9f9d2 commit 3f39039

2 files changed

Lines changed: 34 additions & 34 deletions

File tree

application/docs/methodology/best-practices/ci-cd/index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,14 @@ This guide is organized into core areas of CI/CD practice:
4444
- **[GitHub Actions & Workflow Practices](./github-actions/)** - Platform patterns and reusable workflow guidance
4545
- **[CI/CD & Release Management](./cicd-release-management.md)** - Pipeline design, releases, and deployment strategy
4646

47+
## Need the concrete workflow files?
48+
49+
The pages in this section explain the principles and guardrails.
50+
If you need the actual Hoverkraft workflow shape for an application repository, use the golden-path GitHub Actions guides:
51+
52+
- **[GitHub Actions overview](../../golden-paths/application/03-ci-cd/github/index.md)** - entrypoint for the application CI/CD shape
53+
- **[GitHub CI](../../golden-paths/application/03-ci-cd/github/ci.md)** - shared CI contract
54+
- **[GitHub CD](../../golden-paths/application/03-ci-cd/github/cd.md)** - shared CD contract
55+
- **[Multi-application](../../golden-paths/application/03-ci-cd/github/multi-app.md)** - concrete shape for repositories with several services and one umbrella chart
56+
4757
---

application/src/pages/index.tsx

Lines changed: 24 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -101,47 +101,37 @@ function ValuePropsSection() {
101101
function ProjectsSection() {
102102
const projects = [
103103
{
104-
name: 'compose-action',
105-
icon: '⚡',
106-
url: 'https://github.com/hoverkraft-tech/compose-action',
104+
name: "compose-action",
105+
icon: "⚡",
106+
url: "https://github.com/hoverkraft-tech/compose-action",
107107
stars: 210,
108-
language: 'TypeScript',
109-
description: 'This action runs your docker-compose file and clean up before action finished',
110-
tags: [
111-
'continuous-integration',
112-
'docker-compose',
113-
'github-actions'
114-
],
115-
accent: 'primary'
108+
language: "TypeScript",
109+
description:
110+
"This action runs your docker-compose file and clean up before action finished",
111+
tags: ["continuous-integration", "docker-compose", "github-actions"],
112+
accent: "primary",
116113
},
117114
{
118-
name: 'ci-dokumentor',
119-
icon: '⚡',
120-
url: 'https://github.com/hoverkraft-tech/ci-dokumentor',
115+
name: "ci-dokumentor",
116+
icon: "⚡",
117+
url: "https://github.com/hoverkraft-tech/ci-dokumentor",
121118
stars: 5,
122-
language: 'TypeScript',
123-
description: 'Automated documentation generator for CI/CD components',
124-
tags: [
125-
'documentation',
126-
'github-actions',
127-
'open-source'
128-
],
129-
accent: 'neutral'
119+
language: "TypeScript",
120+
description: "Automated documentation generator for CI/CD components",
121+
tags: ["documentation", "github-actions", "open-source"],
122+
accent: "neutral",
130123
},
131124
{
132-
name: 'ci-github-container',
133-
icon: '⚡',
134-
url: 'https://github.com/hoverkraft-tech/ci-github-container',
125+
name: "ci-github-container",
126+
icon: "⚡",
127+
url: "https://github.com/hoverkraft-tech/ci-github-container",
135128
stars: 5,
136-
language: 'Go Template',
137-
description: 'Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context',
138-
tags: [
139-
'build',
140-
'containers',
141-
'continuous-integration'
142-
],
143-
accent: 'primary'
144-
}
129+
language: "Go Template",
130+
description:
131+
"Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context",
132+
tags: ["build", "containers", "continuous-integration"],
133+
accent: "primary",
134+
},
145135
];
146136

147137
return (

0 commit comments

Comments
 (0)