Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions application/docs/methodology/best-practices/ci-cd/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,14 @@ This guide is organized into core areas of CI/CD practice:
- **[GitHub Actions & Workflow Practices](./github-actions/)** - Platform patterns and reusable workflow guidance
- **[CI/CD & Release Management](./cicd-release-management.md)** - Pipeline design, releases, and deployment strategy

## Need the concrete workflow files?

The pages in this section explain the principles and guardrails.
If you need the actual Hoverkraft workflow shape for an application repository, use the golden-path GitHub Actions guides:

- **[GitHub Actions overview](../../golden-paths/application/03-ci-cd/github/index.md)** - entrypoint for the application CI/CD shape
- **[GitHub CI](../../golden-paths/application/03-ci-cd/github/ci.md)** - shared CI contract
- **[GitHub CD](../../golden-paths/application/03-ci-cd/github/cd.md)** - shared CD contract
- **[Multi-application](../../golden-paths/application/03-ci-cd/github/multi-app.md)** - concrete shape for repositories with several services and one umbrella chart

---
58 changes: 24 additions & 34 deletions application/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,47 +101,37 @@ function ValuePropsSection() {
function ProjectsSection() {
const projects = [
{
name: 'compose-action',
icon: '⚡',
url: 'https://github.com/hoverkraft-tech/compose-action',
name: "compose-action",
icon: "⚡",
url: "https://github.com/hoverkraft-tech/compose-action",
stars: 210,
language: 'TypeScript',
description: 'This action runs your docker-compose file and clean up before action finished',
tags: [
'continuous-integration',
'docker-compose',
'github-actions'
],
accent: 'primary'
language: "TypeScript",
description:
"This action runs your docker-compose file and clean up before action finished",
tags: ["continuous-integration", "docker-compose", "github-actions"],
accent: "primary",
},
{
name: 'ci-dokumentor',
icon: '⚡',
url: 'https://github.com/hoverkraft-tech/ci-dokumentor',
name: "ci-dokumentor",
icon: "⚡",
url: "https://github.com/hoverkraft-tech/ci-dokumentor",
stars: 5,
language: 'TypeScript',
description: 'Automated documentation generator for CI/CD components',
tags: [
'documentation',
'github-actions',
'open-source'
],
accent: 'neutral'
language: "TypeScript",
description: "Automated documentation generator for CI/CD components",
tags: ["documentation", "github-actions", "open-source"],
accent: "neutral",
},
{
name: 'ci-github-container',
icon: '⚡',
url: 'https://github.com/hoverkraft-tech/ci-github-container',
name: "ci-github-container",
icon: "⚡",
url: "https://github.com/hoverkraft-tech/ci-github-container",
stars: 5,
language: 'Go Template',
description: 'Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context',
tags: [
'build',
'containers',
'continuous-integration'
],
accent: 'primary'
}
language: "Go Template",
description:
"Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context",
tags: ["build", "containers", "continuous-integration"],
accent: "primary",
},
];

return (
Expand Down
Loading