Conversation
… and CI builds Signed-off-by: Lasota, Adrian <adrian.lasota@intel.com>
Contributor
|
We don't publish DEVs .whl. |
There was a problem hiding this comment.
Pull request overview
This PR refactors the GitHub Actions CI/CD infrastructure by migrating from local workflow definitions to centralized reusable workflows hosted in the intel/mfd repository. The changes modernize the CI setup with additional quality gates and security checks while consolidating workflow logic.
Changes:
- Replaced local workflow implementations with calls to reusable workflows from
intel/mfd/.github/workflows/ - Added new workflows for dependency review, code quality checks (code standard, PR format validation), and test execution
- Simplified the CodeQL workflow by delegating to a reusable workflow
- Updated manual release workflow with new matrix configuration structure
- Added Dependabot configuration for daily Python dependency updates
- Added dependency review configuration with license and vulnerability checks
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 20 comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/run_tests.yml |
New workflow for running unit and functional tests on PRs and main branch pushes |
.github/workflows/pull_request.yml |
Replaces old pull_requests.yml with streamlined PR build workflow using reusable workflow |
.github/workflows/main.yml |
New CI build workflow for main branch pushes |
.github/workflows/dependency_review.yml |
New workflow to review dependencies for security and license compliance |
.github/workflows/codeql.yml |
Simplified CodeQL workflow using reusable workflow instead of inline implementation |
.github/workflows/check_pr_format.yml |
New workflow for validating PR titles and commit messages |
.github/workflows/check_code_standard.yml |
New workflow for enforcing code standards |
.github/workflows/manual_release.yml |
Updated release workflow with simplified matrix configuration and new parameter structure |
.github/workflows/pull_requests.yml |
Removed old PR workflow (replaced by pull_request.yml) |
.github/workflows/build_upload_whl.yml |
Removed local reusable workflow (logic moved to intel/mfd repository) |
.github/dependency_review.yml |
Configuration for dependency review with allowed licenses and severity thresholds |
.github/dependabot.yml |
Dependabot configuration for automated dependency updates |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mchromin
approved these changes
Feb 27, 2026
abaczek
approved these changes
Mar 5, 2026
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.
…and CI builds