Skip to content

Commit 10a5f6a

Browse files
authored
disable telemetry-summarize functionality when run_attempt >1 (#49)
* disable telemetry-summarize functionality when run_attempt >1 * add message about skipping telemetry
1 parent 45ecc26 commit 10a5f6a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

telemetry-dispatch-summarize/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,9 @@ runs:
1212
using: 'composite'
1313
steps:
1414
- uses: rapidsai/shared-actions/telemetry-impls/load-then-clone@main
15+
if: ${{ github.run_attempt == '1' }}
1516
- uses: ./shared-actions/telemetry-impls/summarize
17+
if: ${{ github.run_attempt == '1' }}
18+
- if: ${{ github.run_attempt != '1' }}
19+
shell: bash
20+
run: echo "Skipping telemetry-summarize for run attempt > 1"

0 commit comments

Comments
 (0)