diff --git a/.github/commands.yml b/.github/commands.yml new file mode 100644 index 00000000..458b4bf1 --- /dev/null +++ b/.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!" + }, + ] +} diff --git a/.github/locker.yml b/.github/locker.yml new file mode 100644 index 00000000..a98d6d7c --- /dev/null +++ b/.github/locker.yml @@ -0,0 +1,5 @@ +{ + daysAfterClose: 45, + daysSinceLastUpdate: 3, + perform: true +} diff --git a/.github/needs_more_info.yml b/.github/needs_more_info.yml new file mode 100644 index 00000000..e5b2cddd --- /dev/null +++ b/.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!" +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 21d86cfc..fbb14d3e 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ "version": "2.0.0", "tasks": [ { - "taskName": "watch", + "label": "watch", "dependsOn": [ "npm: watch:client", "npm: watch:server" ],