Releases: cloudposse-github-actions/readme
Releases · cloudposse-github-actions/readme
v3.1.0
Fix output file list to use spaces instead of commas @goruha (#35)
## what - Change the `file` output variable separator from commas to spaces (`${files// /,}` → `${files// / }`)why
- The previous substitution replaced spaces with commas, which produced an incorrect file pattern for downstream steps (e.g.
git-auto-commit-action'sfile_patternexpects space-separated paths) - This was a no-op substitution bug — the intent was to preserve space-separated file paths, not convert them to comma-separated
references
- Downstream usage in
stefanzweifel/git-auto-commit-actionfile_patterninput
v3.0.0
Bump GitHub Action dependency versions @goruha (#34)
## what - Bump `actions/checkout` from v4 to v6 - Bump `actions/github-script` from v7 to v8 (both usages) - Bump `cloudposse/github-action-setup-atmos` from v2 to v3 - Bump `stefanzweifel/git-auto-commit-action` from v5 to v7why
- Keep action dependencies up to date with their latest major versions
- Pick up bug fixes, performance improvements, and Node.js runtime upgrades shipped in newer releases
references
🤖 Automatic Updates
v2.0.1
Change GitHub Action to use ci.yml workflow @goruha (#31)
## what * Change GitHub Action to use ci.yml workflowFix readme linting technical files @goruha (#30)
## what * Remove technical fileswhy
- Prevent committing autogenerated technical files
🤖 Automatic Updates
v2.0.0
v1.2.0
v1.1.0
v1.0.0
Use atmos to generate readme @goruha (#23)
## what * Use atmos to generate readmewhy
- Build-harness is depricated
Migrating from v0 to v1
v1 use atmos instead of build-harness.
You can drop Makefile if you use it only for readme generation.
To support atmos reaadme generation, you must create atmos.yaml config.
The configuration depends on your repo - please follow this documentation
Example:
docs:
generate:
readme:
base-dir: .
input:
- "./README.yaml"
template: "https://.../README.md.gotmpl"
output: "./README.md"
terraform:
source: src/
enabled: false
format: "markdown"
show_providers: false
show_inputs: true
show_outputs: true
sort_by: "name"
hide_empty: false
indent_level: 2v0.5.0
v0.4.0
v0.3.0
Use GitHub Action Workflows from `cloudposse/.github` Repo @goruha (#12)
## what - Update workflows (`.github/workflows/settings.yaml`) to use shared workflows from `.github` repowhy
- Reduce nested levels of reusable workflows
Fix yaml parse @goruha (#11)
## What * Replace `actions-tools/yaml-outputs` with `mikefarah/yq`Why
actions-tools/yaml-outputshave bug actions-tools/yaml-outputs#23- To fix https://github.com/cloudposse/github-action-atmos-terraform-select-components/actions/runs/9073104579/job/24929685906