Skip to content

Commit e8e7e04

Browse files
authored
chore(ci): Retry make check-component-docs check (vectordotdev#17718)
This check seems to be flakey but we haven't been able to reliably reproduce. Just retry for now. In the future we hope to rewrite this script into Rust. Signed-off-by: Jesse Szwedko <[email protected]> --------- Signed-off-by: Jesse Szwedko <[email protected]>
1 parent dd2527d commit e8e7e04

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,11 @@ jobs:
129129
run: make check-markdown
130130
- name: Check Component Docs
131131
if: needs.changes.outputs.source == 'true' || needs.changes.outputs.component_docs == 'true'
132-
run: make check-component-docs
132+
uses: nick-fields/retry@v2
133+
with:
134+
max_attempts: 10
135+
timeout_seconds: 900
136+
command: make check-component-docs
133137
- name: Check Rust Docs
134138
if: needs.changes.outputs.source == 'true'
135139
run: cd rust-doc && make docs

0 commit comments

Comments
 (0)