restructure

This commit is contained in:
2026-05-29 11:16:00 -04:00
parent abeb9d04d0
commit 1ffe0c23cb
27 changed files with 14 additions and 14 deletions
+13 -13
View File
@@ -8,51 +8,51 @@ Reusable composite actions for Gitea CI/CD pipelines.
| Action | Description | | Action | Description |
|---|---| |---|---|
| [docker](.gitea/actions/docker/README.md) | Build a Docker image and push it to the Gitea container registry | | [docker](docker/README.md) | Build a Docker image and push it to the Gitea container registry |
### Git ### Git
| Action | Description | | Action | Description |
|---|---| |---|---|
| [git/create_tag](.gitea/actions/git/create_tag/README.md) | Create and push a git tag in the current repository | | [git/create_tag](git/create_tag/README.md) | Create and push a git tag in the current repository |
### Helm ### Helm
| Action | Description | | Action | Description |
|---|---| |---|---|
| [helm/diff](.gitea/actions/helm/diff/README.md) | Diff a Helm chart against a running deployment | | [helm/diff](helm/diff/README.md) | Diff a Helm chart against a running deployment |
| [helm/set_deployment_image](.gitea/actions/helm/set_deployment_image/README.md) | Set the image for a Kubernetes deployment via Helm | | [helm/set_deployment_image](helm/set_deployment_image/README.md) | Set the image for a Kubernetes deployment via Helm |
| [helm/template](.gitea/actions/helm/template/README.md) | Render a Helm chart for a deployment | | [helm/template](helm/template/README.md) | Render a Helm chart for a deployment |
| [helm/upgrade](.gitea/actions/helm/upgrade/README.md) | Log in to an OCI registry and run `helm upgrade` for the chart in the current directory | | [helm/upgrade](helm/upgrade/README.md) | Log in to an OCI registry and run `helm upgrade` for the chart in the current directory |
### Infisical ### Infisical
| Action | Description | | Action | Description |
|---|---| |---|---|
| [infisical/fetch-secret](.gitea/actions/infisical/fetch-secret/README.md) | Fetch a single secret value from Infisical using a machine identity token | | [infisical/fetch-secret](infisical/fetch-secret/README.md) | Fetch a single secret value from Infisical using a machine identity token |
### Infrastructure ### Infrastructure
| Action | Description | | Action | Description |
|---|---| |---|---|
| [infra/update_version](.gitea/actions/infra/update_version/README.md) | Update a service tag in `stat-tackler-infra`'s `releases/versions.yaml` | | [infra/update_version](infra/update_version/README.md) | Update a service tag in `stat-tackler-infra`'s `releases/versions.yaml` |
### Kubernetes ### Kubernetes
| Action | Description | | Action | Description |
|---|---| |---|---|
| [kubectl/configure](.gitea/actions/kubectl/configure/README.md) | Write a kubeconfig and configure `kubectl` | | [kubectl/configure](kubectl/configure/README.md) | Write a kubeconfig and configure `kubectl` |
### Node ### Node
| Action | Description | | Action | Description |
|---|---| |---|---|
| [node](.gitea/actions/node/README.md) | Install dependencies, build, and upload a build artifact | | [node](node/README.md) | Install dependencies, build, and upload a build artifact |
| [test/npm](.gitea/actions/test/npm/README.md) | Install dependencies and run an npm test script | | [test/npm](test/npm/README.md) | Install dependencies and run an npm test script |
### Trivy ### Trivy
| Action | Description | | Action | Description |
|---|---| |---|---|
| [trivy/image_scan](.gitea/actions/trivy/image_scan/README.md) | Scan a container image for vulnerabilities with Trivy | | [trivy/image_scan](trivy/image_scan/README.md) | Scan a container image for vulnerabilities with Trivy |
| [trivy/namespace_scan](.gitea/actions/trivy/namespace_scan/README.md) | Scan a Kubernetes namespace for vulnerabilities with Trivy | | [trivy/namespace_scan](trivy/namespace_scan/README.md) | Scan a Kubernetes namespace for vulnerabilities with Trivy |
@@ -13,7 +13,7 @@ Composite action: install dependencies and run an npm test script.
## Usage ## Usage
```yaml ```yaml
- uses: stat-tackler/stat-tackler-infra/.gitea/actions/test/npm@main - uses: stat-tackler/stat-tackler-infra/test/npm@main
with: with:
TEST_SCRIPT: test:unit TEST_SCRIPT: test:unit
``` ```