Skip to content

Commit 7815149

Browse files
committed
Remove input option for specific libraries in the populate_search_engine workflow and simplify command execution. This change streamlines the workflow by eliminating unnecessary complexity related to library filtering.
1 parent f1d3299 commit 7815149

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

.github/workflows/populate_search_engine.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ on:
55
- cron: "5 7 * * *" # every day at 07:05
66
# to run this workflow manually from the Actions tab
77
workflow_dispatch:
8-
inputs:
9-
libraries:
10-
description: 'Specific libraries to process (space-separated, e.g., "accelerate diffusers"). Leave empty for all.'
11-
required: false
12-
default: ''
138

149
concurrency:
1510
group: ${{ github.workflow }}-${{ github.ref }}
@@ -42,11 +37,6 @@ jobs:
4237
# Build command
4338
CMD="uv run doc-builder populate-search-engine"
4439
45-
# Add library filter if specified
46-
if [ ! -z "${{ github.event.inputs.libraries }}" ]; then
47-
CMD="$CMD --libraries ${{ github.event.inputs.libraries }}"
48-
fi
49-
5040
# Add skip embeddings flag
5141
CMD="$CMD --skip-embeddings"
5242

0 commit comments

Comments
 (0)