Skip to content

Commit 2dc9239

Browse files
authored
chore(ci): Retry make check-component-docs check (#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 <jesse.szwedko@datadoghq.com> --------- Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
1 parent 12bc4a7 commit 2dc9239

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)