-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #352 from Flow-Launcher/add_pr_labeler_config
Add PR labeler app config and remove PR assignee bot
- Loading branch information
Showing
2 changed files
with
23 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# The bot always updates the labels, add/remove as necessary [default: false] | ||
alwaysReplace: false | ||
# Treats the text and labels as case sensitive [default: true] | ||
caseSensitive: false | ||
# Array of labels to be applied to the PR [default: []] | ||
customLabels: | ||
# Finds the `text` within the PR title and body and applies the `label` | ||
- text: 'new plugin' | ||
label: 'Plugin Submission' | ||
- text: 'add' | ||
label: 'Plugin Submission' | ||
- text: 'bug' | ||
label: 'bug' | ||
- text: 'fix' | ||
label: 'bug' | ||
- text: 'feature' | ||
label: 'enhancement' | ||
# Search the body of the PR for the `text` [default: true] | ||
searchBody: true | ||
# Search the title of the PR for the `text` [default: true] | ||
searchTitle: true | ||
# Search for whole words only [default: false] | ||
wholeWords: false |
This file was deleted.
Oops, something went wrong.