this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

CLI: Reorder label definition options

Ensure that the least impactful options are listed first.

futurGH 72d84a0c 8e2e687b

+10 -10
+10 -10
src/bin.ts
··· 262 262 type: "select", 263 263 name: "severity", 264 264 message: "Label severity:", 265 - choices: [{ title: "Informational", description: "(neutral)", value: "inform" }, { 266 - title: "Alert", 267 - description: "(warning)", 268 - value: "alert", 269 - }, { title: "None", description: "(no label)", value: "none" }], 265 + choices: [{ title: "None", description: "(no label)", value: "none" }, { 266 + title: "Informational", 267 + description: "(neutral)", 268 + value: "inform", 269 + }, { title: "Alert", description: "(warning)", value: "alert" }], 270 270 }, { 271 271 type: "select", 272 272 name: "blurs", 273 273 message: "Should this label hide content?", 274 - choices: [ 275 - { title: "Content", description: "(hide all labeled content)", value: "content" }, 276 - { title: "Media", description: "(hide media only)", value: "media" }, 277 - { title: "None", description: "(no hiding)", value: "none" }, 278 - ], 274 + choices: [{ title: "None", description: "(no hiding)", value: "none" }, { 275 + title: "Media", 276 + description: "(hide media only)", 277 + value: "media", 278 + }, { title: "Content", description: "(hide all labeled content)", value: "content" }], 279 279 }, { 280 280 type: "select", 281 281 name: "defaultSetting",