device_support.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. name: Device Support Update
  2. description: Add or update a device in Supported Devices
  3. labels: [device-support]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Use this to add your device to `docs/supported-devices.md`. A PR will be opened automatically after you submit — maintainers just need to approve it.
  9. - type: dropdown
  10. id: manufacturer
  11. attributes:
  12. label: Manufacturer
  13. description: Pick the table to update
  14. options:
  15. - Google Pixel
  16. - Samsung
  17. - OnePlus
  18. - OPPO
  19. - Realme
  20. - Xiaomi
  21. - POCO
  22. - Redmi
  23. - Nothing
  24. - Other
  25. validations:
  26. required: true
  27. - type: input
  28. id: device
  29. attributes:
  30. label: Device
  31. description: Market name
  32. placeholder: "e.g., Pixel 8 or Galaxy S23"
  33. validations:
  34. required: true
  35. - type: input
  36. id: codename
  37. attributes:
  38. label: Codename
  39. description: Device codename
  40. placeholder: "e.g., shiba or dm3q"
  41. validations:
  42. required: true
  43. - type: input
  44. id: gki_kernel
  45. attributes:
  46. label: GKI Kernel
  47. description: Kernel version you flashed
  48. placeholder: "e.g., android14-6.1 or 6.1.x-android14"
  49. validations:
  50. required: true
  51. - type: input
  52. id: firmware
  53. attributes:
  54. label: Firmware
  55. description: Firmware / ROM
  56. placeholder: "e.g., stock or lineage-22.1"
  57. validations:
  58. required: false
  59. - type: dropdown
  60. id: status
  61. attributes:
  62. label: Status
  63. options:
  64. - Supported
  65. - Tested / Working
  66. - Not working
  67. default: 0
  68. validations:
  69. required: true
  70. - type: checkboxes
  71. id: tested
  72. attributes:
  73. label: Confirmation
  74. options:
  75. - label: I tested this kernel on the device above and it boots
  76. required: true
  77. - type: textarea
  78. id: notes
  79. attributes:
  80. label: Notes
  81. description: Anything else (optional)
  82. placeholder: Extra context
  83. validations:
  84. required: false