Skip to content

Commit ba3b2af

Browse files
Yifan Sunclaude
andcommitted
[Athena] Fix accuracy CI: disable cancel-in-progress
Accuracy workflows take >60 minutes. With cancel-in-progress: true, every push to main cancels the running accuracy workflow, so it NEVER completes. Change to cancel-in-progress: false so accuracy runs finish even when new pushes arrive. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9883a1d commit ba3b2af

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/accuracy-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
concurrency:
99
group: accuracy-report-${{ github.ref }}
10-
cancel-in-progress: true
10+
cancel-in-progress: false
1111

1212
jobs:
1313
accuracy-report:

.github/workflows/h5-accuracy-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
concurrency:
1313
group: h5-accuracy-report-${{ github.ref }}
14-
cancel-in-progress: true
14+
cancel-in-progress: false
1515

1616
jobs:
1717
h5-accuracy-report:

0 commit comments

Comments
 (0)