-
Notifications
You must be signed in to change notification settings - Fork 140
Feature request: exclude PRs with specific labels from commenting #361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Merged
4 tasks
This is now possible in configuration with the successCommentCondition: "<% return issue.label?.includes('specific-label-name') %>" The above config sets you up for only comment/label issues and pull-requests with specific label, if you intend it to be PRs alone then you want to state for PRs alone like so.... successCommentCondition: "<% return issue.pull_request && issue.label?.includes('specific-label-name') %>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
This is somewhat similar to #359.
There may be some PRs that don't need release comments, such as dependency management and chores. It'd be nice to exclude them by labels like:
The text was updated successfully, but these errors were encountered: