github/workflows: remove pull_request branches selection#1998
Merged
Conversation
GitHub imposes no limit on on actions usage by public repositories, so filtering of PRs is removed to aid developers who branch and PR to/from arbitrary branches.
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates GitHub Actions workflow triggers to broaden when CI runs on pull requests.
Changes:
- Removed
pull_request.branchesfilters from the format/lint workflow. - Removed
pull_request.branchesfilters from the build/test workflow (keepingpathsfiltering).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/format_and_lint.yml | Removes branch scoping for PR-triggered formatting/linting runs. |
| .github/workflows/build_and_test.yml | Removes branch scoping for PR-triggered build/test runs while still restricting by paths. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #1998 +/- ##
===========================================
+ Coverage 52.45% 52.47% +0.02%
===========================================
Files 43 43
Lines 4097 4097
Branches 504 504
===========================================
+ Hits 2149 2150 +1
Misses 1817 1817
+ Partials 131 130 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. |
Collaborator
|
Seems reasonable. Thanks. |
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.
GitHub imposes no limit on on actions usage by public repositories, so filtering of PRs is removed to aid developers who branch and PR to/from arbitrary branches.