commands.yml 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. perform: true,
  3. commands: [
  4. {
  5. type: 'comment',
  6. name: 'question',
  7. allowUsers: [],
  8. action: 'updateLabels',
  9. addLabel: '*question'
  10. },
  11. {
  12. type: 'label',
  13. name: '*question',
  14. allowTriggerByBot: true,
  15. action: 'close',
  16. comment: "Please ask your question on [StackOverflow](https://stackoverflow.com/questions/tagged/monaco-editor). We have a great community over [there](https://stackoverflow.com/questions/tagged/monaco-editor). They have already answered hundreds of questions and are happy to answer yours as well. You can also try [searching through existing issues](https://github.com/microsoft/monaco-editor/issues?utf8=%E2%9C%93&q=is%3Aissue+), looking at [API usage samples](https://microsoft.github.io/monaco-editor/playground.html) or at [integration samples](https://github.com/Microsoft/monaco-editor-samples). See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
  17. },
  18. {
  19. type: 'label',
  20. name: '*out-of-scope',
  21. allowTriggerByBot: true,
  22. action: 'close',
  23. comment: "We closed this issue because we don't plan to address it in the foreseeable future. You can find more detailed information about our decision-making process [here](https://aka.ms/vscode-out-of-scope). If you disagree and feel that this issue is crucial: We are happy to listen and to reconsider.\n\nIf you wonder what we are up to, please see our [roadmap](https://aka.ms/vscoderoadmap) and [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nThanks for your understanding and happy coding!"
  24. },
  25. {
  26. type: 'label',
  27. name: '*as-designed',
  28. allowTriggerByBot: true,
  29. action: 'close',
  30. comment: "The described behavior is how it is expected to work. If you disagree, please explain what is expected and what is not in more detail. See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
  31. },
  32. {
  33. type: 'label',
  34. name: '*english-please',
  35. allowTriggerByBot: true,
  36. action: 'close',
  37. comment: "This issue is being closed because its description is not in English, that makes it hard for us to work on it. Please open a new issue with an English description. You might find [Bing Translator](https://www.bing.com/translator) useful."
  38. },
  39. {
  40. type: 'comment',
  41. name: 'duplicate',
  42. allowUsers: [],
  43. action: 'updateLabels',
  44. addLabel: '*duplicate'
  45. },
  46. {
  47. type: 'label',
  48. name: '*duplicate',
  49. allowTriggerByBot: true,
  50. action: 'close',
  51. comment: "Thanks for creating this issue! We figured it's covering the same as another one we already have. Thus, we closed this one as a duplicate. You can search for existing issues [here](https://github.com/Microsoft/monaco-editor/issues). See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!"
  52. },
  53. {
  54. type: 'comment',
  55. name: 'needsMoreInfo',
  56. allowUsers: [],
  57. action: 'updateLabels',
  58. addLabel: 'needs more info',
  59. comment: "Thanks for creating this issue! We figured it's missing some basic information or in some other way doesn't follow our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines. Please take the time to review these and update the issue.\n\nHappy Coding!"
  60. },
  61. ]
  62. }