Sfoglia il codice sorgente

CI: Add manual trigger for 'workflow_run' builds (#7865)

Mark Jansen 11 mesi fa
parent
commit
ce484301c0
2 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  1. 1 0
      .github/workflows/build.yml
  2. 12 0
      .github/workflows/manual.yml

+ 1 - 0
.github/workflows/build.yml

@@ -8,6 +8,7 @@ on:
     # "scheduled" workflow, while maintaining ability to perform local CI builds.
     workflows:
       - scheduled
+      - manual
     branches:
       - master
       - docking

+ 12 - 0
.github/workflows/manual.yml

@@ -0,0 +1,12 @@
+#
+# This is a dummy workflow used to trigger full builds manually.
+#
+name: manual
+
+on: workflow_dispatch
+
+jobs:
+  manual:
+    runs-on: ubuntu-latest
+    steps:
+      - run: exit 0