chore: clean up configuration files and workflows - #408
Merged
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates CI workflows to only run MegaLinter on pull requests to main and cleans up various YAML-based configuration files by removing leading document markers and relaxing a yamllint rule for document-start markers. Flow diagram for updated MegaLinter CI trigger configurationflowchart TD
Dev[Developer opens or updates PR]
Event{PR base branch is main?}
Event -- yes --> ML[MegaLinter workflow runs]
Event -- no --> Skip[MegaLinter workflow not triggered]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Thanks for opening this pull request! Be sure to follow the pull request template! |
✅MegaLinter analysis: Success
See detailed reports in MegaLinter artifacts
|
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.

This pull request primarily updates configuration files related to CI workflows and linting tools. The changes focus on improving workflow triggers.
CI/CD Workflow Updates:
.github/workflows/mega-linter.yml: Changed the MegaLinter workflow to trigger only on pull requests tomain, rather than on every push, reducing unnecessary workflow runs.Linting Configuration Improvements:
.yamllint.yml: Disabled thedocument-startrule to allow YAML files without a---at the start, increasing flexibility for YAML formatting.Summary by Sourcery
Align CI and linting configuration by simplifying workflow triggers and normalizing YAML config headers.
Enhancements:
CI: