Skip processing of pull requests completely without log output when onlyIssueTypes is set.#1336
Open
chiranjib-swain wants to merge 3 commits intoactions:mainfrom
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR changes the onlyIssueTypes behavior so that when it’s configured, pull requests are skipped entirely (and without per-PR log output), while issues are still filtered by their allowed issue types.
Changes:
- Added an early guard in
IssuesProcessor.processIssuesto silentlycontinueon PRs whenonlyIssueTypesis set. - Updated the compiled
distbundle to include the same behavior. - Expanded
only-issue-typestests to cover PR skipping (no log mentions) and to confirm PRs are processed whenonlyIssueTypesis unset.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
src/classes/issues-processor.ts |
Adds an early skip for PRs when onlyIssueTypes is configured to avoid PR processing/logging. |
dist/index.js |
Compiled output reflecting the same PR-skip logic. |
__tests__/only-issue-types.spec.ts |
Adds test coverage for PR skipping without log mentions and for processing PRs when the option is unset. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <copilot@github.com>
priya-kinthali
approved these changes
May 7, 2026
mahabaleshwars
approved these changes
May 8, 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.
Description:
This PR improves handling of the
onlyIssueTypesoption by silently skipping pull requests when the option is set, without generating log output.Changes
IssuesProcessorlogic to skip PRs silently whenonlyIssueTypesis configuredonlyIssueTypesis unset@actions/coreimport in tests for logging spiesRelated issue:
(#1331)
Check list: