Просмотр исходного кода

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

jimsterino98 5 месяцев назад
Родитель
Сommit
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