-
Notifications
You must be signed in to change notification settings - Fork 702
Fix key error for name[casing] rule #3987
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
ssbarnea
approved these changes
Jan 18, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work!
nrdufour
added a commit
to nrdufour/home-ops
that referenced
this pull request
Jan 20, 2024
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ansible-lint](https://github.com/ansible/ansible-lint) ([changelog](https://github.com/ansible/ansible-lint/releases)) | patch | `==6.22.1` -> `==6.22.2` | --- ### Release Notes <details> <summary>ansible/ansible-lint (ansible-lint)</summary> ### [`v6.22.2`](https://github.com/ansible/ansible-lint/releases/tag/v6.22.2) [Compare Source](ansible/ansible-lint@v6.22.1...v6.22.2) #### Bugfixes - Fix key error for name\[casing] rule ([#​3987](ansible/ansible-lint#3987)) [@​ajinkyau](https://github.com/ajinkyau) - Allow dashes in legacy role namespaces ([#​3962](ansible/ansible-lint#3962)) [@​sur5r](https://github.com/sur5r) - Use new ansible-compat verbosity levels ([#​3975](ansible/ansible-lint#3975)) [@​ssbarnea](https://github.com/ssbarnea) - Remove dependency on newer requests library ([#​3959](ansible/ansible-lint#3959)) [@​ssbarnea](https://github.com/ssbarnea) - Ignore set-property for systemd command ([#​3949](ansible/ansible-lint#3949)) [@​alanbbr](https://github.com/alanbbr) - Correct requires_ansible error message ([#​3954](ansible/ansible-lint#3954)) [@​ssbarnea](https://github.com/ssbarnea) - Improve transformation for `no-free-form` rule ([#​3945](ansible/ansible-lint#3945)) [@​ajinkyau](https://github.com/ajinkyau) - Documentation improvement ([#​3946](ansible/ansible-lint#3946)) [@​ssbarnea](https://github.com/ssbarnea) - docs: fix grammatical issue in philosophy Q\&A section ([#​3934](ansible/ansible-lint#3934)) [@​davidhulick](https://github.com/davidhulick) - Update supported versions of ansible ([#​3930](ansible/ansible-lint#3930)) [@​ajinkyau](https://github.com/ajinkyau) - Fix backward compatibility ([#​3929](ansible/ansible-lint#3929)) [@​McSim85](https://github.com/McSim85) - Fix auto capitalization for name\[prefix] rule ([#​3922](ansible/ansible-lint#3922)) [@​ajinkyau](https://github.com/ajinkyau) - Fix role deps check for detecting path names ([#​3923](ansible/ansible-lint#3923)) [@​cavcrosby](https://github.com/cavcrosby) - Avoid warnings about PATH with pipx installations ([#​3920](ansible/ansible-lint#3920)) [@​ssbarnea](https://github.com/ssbarnea) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE0MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Reviewed-on: https://git.home/nrdufour/home-ops/pulls/319 Co-authored-by: Renovate <[email protected]> Co-committed-by: Renovate <[email protected]>
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.
always
blockIncorrect
yaml_path
was being generated earlier.This PR fixes the same and ensures we get the correct task when we have multiple blocks like
block
andalways
within the same yaml file.Fixes #3973