Skip to content

Commit 20d844c

Browse files
committed
ci: fix broken pipelines
1 parent 3ad84b1 commit 20d844c

3 files changed

Lines changed: 22 additions & 8 deletions

File tree

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
fetch-depth: 0
5252

5353
- name: Set up Python
54+
id: setup-python
5455
uses: actions/setup-python@v5
5556
with:
5657
python-version: "3.11"
@@ -76,7 +77,6 @@ jobs:
7677
repo-token: ${{ secrets.GITHUB_TOKEN }}
7778

7879
- name: Install dependencies
79-
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
8080
run: task install
8181

8282
- name: Validate documentation build
@@ -117,6 +117,7 @@ jobs:
117117
fetch-depth: 0
118118

119119
- name: Set up Python
120+
id: setup-python
120121
uses: actions/setup-python@v5
121122
with:
122123
python-version: "3.11"
@@ -142,7 +143,6 @@ jobs:
142143
repo-token: ${{ secrets.GITHUB_TOKEN }}
143144

144145
- name: Install dependencies
145-
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
146146
run: task install
147147

148148
- name: Build documentation (non-strict for deployment)

.yamllint.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
extends: relaxed
2+
3+
ignore: |
4+
.venv/
5+
.git/
6+
site/
7+
coverage/
8+
.facts/
9+
node_modules/
10+
*.egg-info/
11+
212
rules:
313
line-length:
4-
max: 120
14+
max: 160
15+
level: warning
16+
comments:
17+
min-spaces-from-content: 1
18+
519
yaml-tags:
620
- "!!python/name:material.extensions.emoji.to_svg"
721
- "!!python/name:material.extensions.emoji.twemoji"

stacks/apps/librechat/librechat.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ interface:
106106
# temporaryChatRetention: 1
107107

108108
# Example Cloudflare turnstile (optional)
109-
#turnstile:
110-
# siteKey: "your-site-key-here"
111-
# options:
112-
# language: "auto" # "auto" or an ISO 639-1 language code (e.g. en)
113-
# size: "normal" # Options: "normal", "compact", "flexible", or "invisible"
109+
# turnstile:
110+
# siteKey: "your-site-key-here"
111+
# options:
112+
# language: "auto" # "auto" or an ISO 639-1 language code (e.g. en)
113+
# size: "normal" # Options: "normal", "compact", "flexible", or "invisible"
114114

115115
# Example Registration Object Structure (optional)
116116
registration:

0 commit comments

Comments
 (0)