chore: refresh .env.example and fix .gitignore trailing newline#33
Merged
Conversation
Sync .env.example with the current action.yml inputs. It listed only the original inputs; add the ones introduced since (ec2-image-filters, ec2-image-owner, eip-allocation-id, iam-role-name, runner-version, encrypt-ebs, http-tokens, debug, aws-resource-tags), group them by mode, fix header typos, and default aws-resource-tags to [] so a local run does not crash on JSON.parse. Add the missing trailing newline to .gitignore. Signed-off-by: Yuriy R <22548029+kurok@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
.env.example— sync with the currentaction.ymlinputs. It listed only the original inputs; this adds the ones introduced since (ec2-image-filters,ec2-image-owner,eip-allocation-id,iam-role-name,runner-version,encrypt-ebs,http-tokens,debug,aws-resource-tags), groups them by mode (always / start / stop / optional), and fixes header typos.INPUT_AWS-RESOURCE-TAGSdefaults to[]becauseconfig.jsparses it unconditionally, so an empty value crashes a local run onJSON.parse('')..gitignore— add the missing trailing newline.Why
Docs / local-dev hygiene. Keeps the example in step with
action.yml.Scope
No
src/ordist/changes, so runtime behavior and the shipped bundle are unchanged. Lint, unit tests (52/52), andverify-distare unaffected.