浏览代码

Add input options for SUSFS, BBG, BBRv3, and unicodefix

jimsterino98 5 月之前
父节点
当前提交
93e438e9c3
共有 1 个文件被更改,包括 41 次插入0 次删除
  1. 41 0
      .github/workflows/main.yml

+ 41 - 0
.github/workflows/main.yml

@@ -17,11 +17,52 @@ on:
           - Release
         default: Actions
 
+      SUSFS:
+        description: "Build with SUSFS?"
+        required: true
+        type: choice
+        options:
+          - yes
+          - no
+        default: yes
+
+      BBG:
+        description: "Build with BBG?"
+        required: true
+        type: choice
+        options:
+          - yes
+          - no
+        default: yes
+
+      BBRv3:
+        description: "Add BBR?"
+        required: true
+        type: choice
+        options:
+          - yes
+          - no
+        default: yes
+
+      unicodefix:
+        description: "Add unicode fix?"
+        required: true
+        type: choice
+        options:
+          - yes
+          - no
+        default: yes
+
 jobs:
 
   build-samsung:
     uses: ./.github/workflows/kernel-samsung.yml
     secrets: inherit
+    with:
+      SUSFS: ${{ inputs.SUSFS }}
+      BBG: ${{ inputs.BBG }}
+      BBRv3: ${{ inputs.BBRv3 }}
+      unicodefix: ${{ inputs.unicodefix }}
 
   release:
     runs-on: ubuntu-latest