diff --git a/README.md b/README.md index ab2ce59..39eee83 100644 --- a/README.md +++ b/README.md @@ -8,51 +8,51 @@ Reusable composite actions for Gitea CI/CD pipelines. | 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 | 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 | Action | Description | |---|---| -| [helm/diff](.gitea/actions/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/template](.gitea/actions/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/diff](helm/diff/README.md) | Diff a Helm chart against a running deployment | +| [helm/set_deployment_image](helm/set_deployment_image/README.md) | Set the image for a Kubernetes deployment via Helm | +| [helm/template](helm/template/README.md) | Render a Helm chart for a deployment | +| [helm/upgrade](helm/upgrade/README.md) | Log in to an OCI registry and run `helm upgrade` for the chart in the current directory | ### Infisical | 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 | 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 | 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 | Action | Description | |---|---| -| [node](.gitea/actions/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 | +| [node](node/README.md) | Install dependencies, build, and upload a build artifact | +| [test/npm](test/npm/README.md) | Install dependencies and run an npm test script | ### Trivy | Action | Description | |---|---| -| [trivy/image_scan](.gitea/actions/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/image_scan](trivy/image_scan/README.md) | Scan a container image for vulnerabilities with Trivy | +| [trivy/namespace_scan](trivy/namespace_scan/README.md) | Scan a Kubernetes namespace for vulnerabilities with Trivy | diff --git a/.gitea/actions/docker/README.md b/docker/README.md similarity index 100% rename from .gitea/actions/docker/README.md rename to docker/README.md diff --git a/.gitea/actions/docker/action.yml b/docker/action.yml similarity index 100% rename from .gitea/actions/docker/action.yml rename to docker/action.yml diff --git a/.gitea/actions/git/create_tag/README.md b/git/create_tag/README.md similarity index 100% rename from .gitea/actions/git/create_tag/README.md rename to git/create_tag/README.md diff --git a/.gitea/actions/git/create_tag/action.yml b/git/create_tag/action.yml similarity index 100% rename from .gitea/actions/git/create_tag/action.yml rename to git/create_tag/action.yml diff --git a/.gitea/actions/helm/diff/README.md b/helm/diff/README.md similarity index 100% rename from .gitea/actions/helm/diff/README.md rename to helm/diff/README.md diff --git a/.gitea/actions/helm/diff/action.yml b/helm/diff/action.yml similarity index 100% rename from .gitea/actions/helm/diff/action.yml rename to helm/diff/action.yml diff --git a/.gitea/actions/helm/set_deployment_image/README.md b/helm/set_deployment_image/README.md similarity index 100% rename from .gitea/actions/helm/set_deployment_image/README.md rename to helm/set_deployment_image/README.md diff --git a/.gitea/actions/helm/set_deployment_image/action.yml b/helm/set_deployment_image/action.yml similarity index 100% rename from .gitea/actions/helm/set_deployment_image/action.yml rename to helm/set_deployment_image/action.yml diff --git a/.gitea/actions/helm/template/README.md b/helm/template/README.md similarity index 100% rename from .gitea/actions/helm/template/README.md rename to helm/template/README.md diff --git a/.gitea/actions/helm/template/action.yml b/helm/template/action.yml similarity index 100% rename from .gitea/actions/helm/template/action.yml rename to helm/template/action.yml diff --git a/.gitea/actions/helm/upgrade/README.md b/helm/upgrade/README.md similarity index 100% rename from .gitea/actions/helm/upgrade/README.md rename to helm/upgrade/README.md diff --git a/.gitea/actions/helm/upgrade/action.yml b/helm/upgrade/action.yml similarity index 100% rename from .gitea/actions/helm/upgrade/action.yml rename to helm/upgrade/action.yml diff --git a/.gitea/actions/infisical/fetch-secret/README.md b/infisical/fetch-secret/README.md similarity index 100% rename from .gitea/actions/infisical/fetch-secret/README.md rename to infisical/fetch-secret/README.md diff --git a/.gitea/actions/infisical/fetch-secret/action.yml b/infisical/fetch-secret/action.yml similarity index 100% rename from .gitea/actions/infisical/fetch-secret/action.yml rename to infisical/fetch-secret/action.yml diff --git a/.gitea/actions/infra/update_version/README.md b/infra/update_version/README.md similarity index 100% rename from .gitea/actions/infra/update_version/README.md rename to infra/update_version/README.md diff --git a/.gitea/actions/infra/update_version/action.yml b/infra/update_version/action.yml similarity index 100% rename from .gitea/actions/infra/update_version/action.yml rename to infra/update_version/action.yml diff --git a/.gitea/actions/kubectl/configure/README.md b/kubectl/configure/README.md similarity index 100% rename from .gitea/actions/kubectl/configure/README.md rename to kubectl/configure/README.md diff --git a/.gitea/actions/kubectl/configure/action.yml b/kubectl/configure/action.yml similarity index 100% rename from .gitea/actions/kubectl/configure/action.yml rename to kubectl/configure/action.yml diff --git a/.gitea/actions/node/README.md b/node/README.md similarity index 100% rename from .gitea/actions/node/README.md rename to node/README.md diff --git a/.gitea/actions/node/action.yml b/node/action.yml similarity index 100% rename from .gitea/actions/node/action.yml rename to node/action.yml diff --git a/.gitea/actions/test/npm/README.md b/test/npm/README.md similarity index 91% rename from .gitea/actions/test/npm/README.md rename to test/npm/README.md index 6a715ff..7a200f8 100644 --- a/.gitea/actions/test/npm/README.md +++ b/test/npm/README.md @@ -13,7 +13,7 @@ Composite action: install dependencies and run an npm test script. ## Usage ```yaml -- uses: stat-tackler/stat-tackler-infra/.gitea/actions/test/npm@main +- uses: stat-tackler/stat-tackler-infra/test/npm@main with: TEST_SCRIPT: test:unit ``` diff --git a/.gitea/actions/test/npm/action.yml b/test/npm/action.yml similarity index 100% rename from .gitea/actions/test/npm/action.yml rename to test/npm/action.yml diff --git a/.gitea/actions/trivy/image_scan/README.md b/trivy/image_scan/README.md similarity index 100% rename from .gitea/actions/trivy/image_scan/README.md rename to trivy/image_scan/README.md diff --git a/.gitea/actions/trivy/image_scan/action.yml b/trivy/image_scan/action.yml similarity index 100% rename from .gitea/actions/trivy/image_scan/action.yml rename to trivy/image_scan/action.yml diff --git a/.gitea/actions/trivy/namespace_scan/README.md b/trivy/namespace_scan/README.md similarity index 100% rename from .gitea/actions/trivy/namespace_scan/README.md rename to trivy/namespace_scan/README.md diff --git a/.gitea/actions/trivy/namespace_scan/action.yml b/trivy/namespace_scan/action.yml similarity index 100% rename from .gitea/actions/trivy/namespace_scan/action.yml rename to trivy/namespace_scan/action.yml