server_request.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. ---
  2. name: Server Request
  3. description: Suggest a new game server to be added
  4. title: "[Server Request]: "
  5. labels: ["type: game server request"]
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. Thanks for taking the time to fill out this game server request!
  11. - type: input
  12. id: game-server
  13. attributes:
  14. label: Game server
  15. description: What game server would you like to add?
  16. validations:
  17. required: true
  18. - type: checkboxes
  19. id: dedicated-server
  20. attributes:
  21. label: Dedicated server
  22. description: Confirm this is a dedicated server request and not client hosting.
  23. options:
  24. - label: "Yes, this is a dedicated server (not client hosting)."
  25. required: true
  26. - type: checkboxes
  27. id: on-linux
  28. attributes:
  29. label: Linux support
  30. description: Does this game server have native Linux server support? (not wine)
  31. options:
  32. - label: "Yes"
  33. validations:
  34. required: true
  35. - type: dropdown
  36. id: on-steam
  37. attributes:
  38. label: Steam
  39. description: Is this game server available on Steam?
  40. options:
  41. - "Yes"
  42. - "No"
  43. validations:
  44. required: true
  45. - type: input
  46. id: steam-id
  47. attributes:
  48. label: Steam appid
  49. description: What is the Steam appid of the dedicated server? Required when Steam is Yes. Use SteamDB to get the appid (https://steamdb.info).
  50. placeholder: "892970"
  51. validations:
  52. required: false
  53. - type: textarea
  54. id: official-docs
  55. attributes:
  56. label: Official dedicated server documentation
  57. description: Provide official documentation links for installing/running the dedicated server.
  58. placeholder: |
  59. https://example.com/docs/server-setup
  60. https://example.com/docs/dedicated-server
  61. validations:
  62. required: true
  63. - type: textarea
  64. id: linux-binary-proof
  65. attributes:
  66. label: Linux binary proof
  67. description: Provide evidence that Linux server binaries are available (official docs/download links/version notes).
  68. placeholder: |
  69. https://example.com/downloads/linux-dedicated-server
  70. https://example.com/release-notes/linux-server
  71. validations:
  72. required: true
  73. - type: textarea
  74. id: guides
  75. attributes:
  76. label: Guides
  77. description: Links to community or third-party guides on how to install the game server.
  78. - type: checkboxes
  79. id: terms
  80. attributes:
  81. label: Code of Conduct
  82. description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/GameServerManagers/LinuxGSM/blob/master/CODE_OF_CONDUCT.md)
  83. options:
  84. - label: I agree to follow this project's Code of Conduct
  85. required: true