Skip to content

Commit f2cc6ef

Browse files
remove workflow dispatch options from workflows that shouldn't be run manually
1 parent 6aa0832 commit f2cc6ef

4 files changed

Lines changed: 4 additions & 81 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: CI
33
on:
44
workflow_call:
55
inputs:
6+
branch:
7+
description: "(Optional) Branch to checkout"
8+
required: false
9+
type: string
610
python-versions:
711
description: "Python Versions"
812
required: false

.github/workflows/docker-build-v2.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -25,30 +25,6 @@ on:
2525
type: string
2626
description: "Ref to check out (branch, tag, or commit). This is required -- it specifies where the source code for the release is located."
2727

28-
workflow_dispatch:
29-
inputs:
30-
main_version:
31-
description: "Main version to tag images with. If not provided, will be extracted from code."
32-
required: false
33-
type: string
34-
base_version:
35-
description: "Base version to tag images with. If not provided, will be extracted from code."
36-
required: false
37-
type: string
38-
release_type:
39-
description: "Type of release. One of 'main', 'main-ep', 'base', 'main-all'."
40-
required: true
41-
type: string
42-
pre_release:
43-
description: "Whether this is a pre-release."
44-
required: false
45-
type: boolean
46-
default: false
47-
ref:
48-
required: true
49-
type: string
50-
description: "Ref to check out (branch, tag, or commit). This is required -- it specifies where the source code for the release is located."
51-
5228
env:
5329
PYTHON_VERSION: "3.13"
5430

.github/workflows/docker-nightly-build.yml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,6 @@ on:
2121
type: string
2222
description: "Override base version for tagging. If not provided, will be extracted from code."
2323

24-
workflow_dispatch:
25-
inputs:
26-
release_type:
27-
description: "Nightly release type. One of 'nightly-main', 'nightly-base', 'nightly-main-all'."
28-
required: true
29-
type: choice
30-
options:
31-
- nightly-main
32-
- nightly-base
33-
- nightly-main-all
34-
ref:
35-
required: true
36-
type: string
37-
description: "Ref to check out (branch, tag, or commit). This is required -- it specifies where the source code for the release is located."
38-
main_version:
39-
description: "Override main version for tagging. If not provided, will be extracted from code."
40-
required: false
41-
type: string
42-
base_version:
43-
description: "Override base version for tagging. If not provided, will be extracted from code."
44-
required: false
45-
type: string
46-
4724
env:
4825
PYTHON_VERSION: "3.13"
4926

.github/workflows/release_nightly.yml

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,6 @@ name: Langflow Nightly Build
22
run-name: Langflow Nightly Release by @${{ github.actor }}
33

44
on:
5-
workflow_dispatch:
6-
inputs:
7-
build_docker_base:
8-
description: "Build Docker Image for Langflow Nightly Base"
9-
required: true
10-
type: boolean
11-
default: false
12-
build_docker_main:
13-
description: "Build Docker Image for Langflow Nightly"
14-
required: true
15-
type: boolean
16-
default: false
17-
build_docker_ep:
18-
description: "Build Docker Image for Langflow Nightly with Entrypoint"
19-
required: false
20-
type: boolean
21-
default: false
22-
build_lfx:
23-
description: "Build and release LFX package"
24-
required: false
25-
type: boolean
26-
default: false
27-
nightly_tag_main:
28-
description: "Tag for the nightly main build"
29-
required: true
30-
type: string
31-
nightly_tag_base:
32-
description: "Tag for the nightly base build"
33-
required: true
34-
type: string
35-
nightly_tag_lfx:
36-
description: "Tag for the nightly LFX build"
37-
required: false
38-
type: string
395
workflow_call:
406
inputs:
417
build_docker_base:

0 commit comments

Comments
 (0)