Black Duck integration and CI/SonarQube updates #535
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.





Description
This pull request introduces new configuration files to improve the project's Continuous Integration (CI) and code quality analysis processes. The first file sets up a GitHub Actions workflow stub for standardized CI checks on pull requests and pushes to key branches. The second file adds a SonarQube configuration, enabling automated code quality and security scanning for Ruby code in the repository.
CI/CD workflow enhancements:
.github/workflows/ci-main-pull-request-stub.ymlto standardize CI checks for pull requests and pushes tomain,develop, andrelease/**branches, leveraging a shared workflow and enabling security, quality, and compliance scans such as Trivy, Trufflehog, BlackDuck Polaris, and SonarQube.Code quality and analysis configuration:
sonar-project.propertiesto configure SonarQube analysis for the repository, specifying project metadata, Ruby language settings, source and test directories, and exclusions for non-Ruby files. This enables automated code quality and security analysis integrated with SonarQube.Types of changes
Checklist:
Gemfile.lockhas changed, I have used--conservativeto do it and included the full output in the Description above.