Releases: cloudposse/github-action-atmos-affected-stacks
Releases · cloudposse/github-action-atmos-affected-stacks
v6.5.0
Add skip-checkout to base-ref @jamengual (#66)
This pull request includes changes to the `action.yml` file to improve the flexibility and functionality of the GitHub Action configuration. The most important changes include updating the `skip-checkout` input description and default value, modifying the `runs` section to conditionally skip the checkout step, and refining the checkout command for the base ref.Improvements to input descriptions and defaults:
action.yml
: Updated theskip-checkout
input description to include both head-ref and base-ref. Changed the default value ofskip-checkout
from single to double quotes for consistency.
Enhancements to the runs
section:
action.yml
: Added a conditional statement to theactions/checkout@v4
step to skip the checkout ifskip-checkout
is set to 'true'.action.yml
: Refined the checkout command for the base ref to conditionally force the checkout based on theskip-checkout
input.
Other changes:
action.yml
: Removed an unnecessary blank line in theoutputs
section.
v6.4.0
v6.3.0
v6.2.0
Add process templates option to GitHub Action parameters @lukekraus45 (#61)
## what * Added `process-templates `inputwhy
- When
process-templates
is false, we can avoid processing the go templates when running the describe command. This is necessary if certain go templates have references that are not configured for GH actions
references
v6.1.0
v6.0.0
v5.5.0
v5.4.0
v5.3.0
Adding new --stack parameter @jamengual (#54)
## what * Upgrade default version to 1.96.0 * Add new --stack option supported on >1.90.0why
- To allow filter changes bystacks
references
v5.2.0
fix: replace context with default var (#52) @goruha (#53)
## what - Replace context with default variablewhy
- When using container within GitHub Actions, context value is incorrect. Default variable value remains correct.
- As github.action_path is used during step execution (within runner), it can be replaced by default variable.