Update workflows: refine PR verification triggers and enhance documen…#83
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request aims to reduce unnecessary CI runs by restricting the pr-verify.yml workflow to only trigger when PRs are marked ready for review, and removes the dependabot skip logic from the codequality.yml workflow for consistent code quality checks.
Changes:
- Restricts
pr-verify.ymlworkflow trigger to onlyready_for_reviewevent type (removesopened,synchronize,reopened) - Removes dependabot actor check from
codequality.ymlworkflow to enable SonarCloud analysis for all PRs - Updates documentation to reflect that pr-verify runs "when PR is marked ready for review" and removes mention of dependabot skipping in SonarCloud analysis
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
.github/workflows/pr-verify.yml |
Changes PR trigger from multiple event types to only ready_for_review |
.github/workflows/codequality.yml |
Removes conditional skip for dependabot PRs in quality checks |
docs/development-workflows.md |
Updates documentation to clarify pr-verify trigger behavior and SonarCloud analysis applicability |
|
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 updates workflow triggers and documentation to clarify when CI checks run and to simplify configuration. The main changes restrict the
pr-verify.ymlworkflow to only run when a pull request is marked "ready for review", remove special-case skipping of SonarCloud analysis for dependabot, and update documentation to reflect these changes.Workflow trigger and configuration changes:
pr-verify.ymlworkflow now only runs when a pull request is marked "ready for review", instead of on all PR events. This reduces unnecessary CI runs for draft or WIP PRs.codequality.ymlworkflow no longer skips SonarCloud analysis for dependabot PRs, ensuring consistent code quality checks.Documentation updates:
docs/development-workflows.mdto clarify thatpr-verify.ymlruns only when a PR is marked ready for review.