This repository was archived by the owner on Aug 29, 2020. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 9
Relax label checks #30
Merged
Merged
Changes from 1 commit
Commits
Show all changes
9 commits Select commit Hold shift + click to select a range
7a5a2fb Update deps
andreasohlund dba451e Remove label checks
andreasohlund f2f22af Include unlabeled issues/pulls
andreasohlund fb136a0 Approve lauout changes
andreasohlund f3abd99 Clarify conventions in Readme
andreasohlund fc3156d Remove white space
andreasohlund d65a4e9 No app config needed
andreasohlund 34e6ed7 Remove uneeded fields
andreasohlund 7f1da5b Relaxed label matching
andreasohlund File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Include unlabeled issues/pulls
- Loading branch information
commit f2f22afadf7a1a407178e84e0895f856c7ddb73b
There are no files selected for viewing
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how about
Contains("Bug")?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't that to wide, what if there is a label that contains those characters?
How about:
issue => issue.Labels.Any(label => label.Name == "Type: Bug" || label.Name == "Bug"There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good with that either as of now (maybe some repo decided to have a
Critical BugorType:Buglabel which would break this impl. but good to skip that as of now.