Skip to content

Commit 94e55a2

Browse files
authored
fix missing repo flag for retry workflow (#5870)
1 parent ccc52ef commit 94e55a2

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/retry.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ on:
1313
- APM Integrations
1414
- AppSec
1515
- Debugger
16+
- Lambda
1617
- LLMObs
17-
- Project
1818
- Platform
19+
- Profiling
20+
- Project
21+
- System Tests
1922
- Test Optimization
2023

2124
jobs:
@@ -28,4 +31,4 @@ jobs:
2831
if: github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.run_attempt == 1
2932
steps:
3033
- run: |
31-
gh run rerun ${{ github.event.workflow_run.id }} --failed || exit 0
34+
gh run rerun ${{ github.event.workflow_run.id }} --repo DataDog/dd-trace-js --failed || exit 0

scripts/flakiness.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ const workflows = [
1414
'.github/workflows/apm-integrations.yml',
1515
'.github/workflows/appsec.yml',
1616
'.github/workflows/debugger.yml',
17+
'.github/workflows/lambda.yml',
1718
'.github/workflows/llmobs.yml',
1819
'.github/workflows/platform.yml',
20+
'.github/workflows/profiling.yml',
1921
'.github/workflows/project.yml',
2022
'.github/workflows/system-tests.yml',
2123
'.github/workflows/test-optimization.yml'

0 commit comments

Comments
 (0)