Skip to content

Commit

Permalink
Config issue bot
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Nov 21, 2017
1 parent ad394e3 commit 33770da
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/commands.yml
@@ -0,0 +1,36 @@
{
perform: true,
commands: [
{
type: 'label',
name: '*question',
action: 'close',
comment: "This issue has been closed because it represents a question. Questions are better addressed on [StackOverflow](https://stackoverflow.com/questions/tagged/language-server-protocol). See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
},
{
type: 'label',
name: '*not-reproducible',
action: 'close',
comment: "This issue has been closed because the problem could not be reproduced either because it is already fixed in later versions of the product or because it requires additional details on how to reproduce it. See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
},
{
type: 'label',
name: '*out-of-scope',
action: 'close',
comment: "This feature request will not be considered in the next 6-12 months and has been closed to keep the number of issues we have to maintain manageable. See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nThanks for your understanding and happy coding!"
},
{
type: 'comment',
name: 'duplicate',
action: 'updateLabels',
addLabel: '*duplicate'
},
{
type: 'label',
name: '*duplicate',
allowTriggerByBot: true,
action: 'close',
comment: "This issue has been closed because it is already tracked by another issue. See also our [GitHub issues](https://github.com/Microsoft/vscode-languageserver-node/issues) to search for existing issues and our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
},
]
}
5 changes: 5 additions & 0 deletions .github/locker.yml
@@ -0,0 +1,5 @@
{
daysAfterClose: 45,
daysSinceLastUpdate: 3,
perform: true
}
6 changes: 6 additions & 0 deletions .github/needs_more_info.yml
@@ -0,0 +1,6 @@
{
daysUntilClose: 7,
needsMoreInfoLabel: 'needs more info',
perform: true,
closeComment: "This issue has been closed automatically because it needs more information and has not had recent activity. See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
}
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Expand Up @@ -4,7 +4,7 @@
"version": "2.0.0",
"tasks": [
{
"taskName": "watch",
"label": "watch",
"dependsOn": [
"npm: watch:client", "npm: watch:server"
],
Expand Down

0 comments on commit 33770da

Please sign in to comment.