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 includes several updates to the repository configuration and GitHub workflows to enhance automation and code quality checks. The most important changes include the addition of an
.editorconfig
file, updates to the release process, and the introduction of multiple GitHub Actions workflows for CI, CodeQL analysis, dependency review, and pull request labeling.Configuration updates:
.editorconfig
: Added configuration to enforce consistent coding styles across the project, such as charset, end-of-line format, and indentation rules.Release process improvements:
.github/release.yml
: Added a changelog configuration to categorize changes by labels and exclude certain labels from the changelog.GitHub Actions workflows:
.github/workflows/ci.yml
: Introduced a CI workflow to run unit tests on push and pull request events for themaster
branch, including matrix testing for different Go versions..github/workflows/codeql.yml
: Added a CodeQL analysis workflow to run security and quality checks on the codebase..github/workflows/dependency-review.yml
: Implemented a dependency review workflow to analyze and review dependencies on pull requests..github/workflows/labeler.yml
: Created a pull request labeler workflow to automatically apply labels based on the changes in the pull request.