Browse Source

ci(workflows): simplify descriptions and enable default builds in workflow

Refactor the GitHub Actions workflow by removing emoji from descriptions for clarity and enabling default build options for all Android versions. This enhances the user experience by providing a cleaner interface and ensuring that builds are set to true by default.
TheWildJames 9 tháng trước cách đây
mục cha
commit
5592c21e4f
1 tập tin đã thay đổi với 20 bổ sung23 xóa
  1. 20 23
      .github/workflows/main.yml

+ 20 - 23
.github/workflows/main.yml

@@ -7,57 +7,54 @@ permissions:
 on:
   workflow_dispatch:
     inputs:
-      # === Release Settings ===
       release_type:
-        description: "📦 Release Type"
+        description: "Release Type"
         type: choice
         options: [Actions, Pre-Release, Release]
         default: Actions
-
-      # === KernelSU Settings ===
       ksu_variant:
-        description: "🔧 KernelSU Variant"
+        description: "KernelSU Variant"
         type: choice
         options: [KSU, WKSU]
         default: KSU
       ksu_commit:
-        description: "📝 KSU Commit (optional)"
+        description: "KSU Commit (optional)"
         type: string
         required: false
 
-      # === Build Selection (check multiple!) ===
+      # Build Selection
       build_a12_5_10:
-        description: "🤖 Android 12 - 5.10"
+        description: "Android 12 - 5.10"
         type: boolean
-        default: false
+        default: true
       build_a13_5_10:
-        description: "🤖 Android 13 - 5.10"
+        description: "Android 13 - 5.10"
         type: boolean
-        default: false
+        default: true
       build_a13_5_15:
-        description: "🤖 Android 13 - 5.15"
+        description: "Android 13 - 5.15"
         type: boolean
-        default: false
+        default: true
       build_a14_5_15:
-        description: "🤖 Android 14 - 5.15"
+        description: "Android 14 - 5.15"
         type: boolean
-        default: false
+        default: true
       build_a14_6_1:
-        description: "🤖 Android 14 - 6.1"
+        description: "Android 14 - 6.1"
         type: boolean
-        default: false
+        default: true
       build_a15_6_6:
-        description: "🤖 Android 15 - 6.6"
+        description: "Android 15 - 6.6"
         type: boolean
-        default: false
+        default: true
       build_a16_6_12:
-        description: "🤖 Android 16 - 6.12"
+        description: "Android 16 - 6.12"
         type: boolean
-        default: false
+        default: true
       build_custom:
-        description: "⚙️ Custom Builds"
+        description: "Custom Builds"
         type: boolean
-        default: false
+        default: true
 
 jobs:
   build-a12-5-10: