Skip to content

Commit 4ddfcad

Browse files
authored
workaround for github failure to validate details_url (#4927)
workaround for: flutter/flutter#181425
1 parent 0b0e635 commit 4ddfcad

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

app_dart/lib/src/service/scheduler.dart

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,14 @@ $s
885885
required String details,
886886
String? detailsUrl,
887887
}) async {
888-
log.info('Failing merge group guard for merge group $headSha in $slug');
888+
log.info('''
889+
Require action for merge group guard ${lock.id} for:
890+
head sha: $headSha
891+
slug: $slug
892+
summary: $summary
893+
details: $details
894+
detailsUrl: $detailsUrl
895+
''');
889896
await _githubChecksService.githubChecksUtil.updateCheckRun(
890897
_config,
891898
slug,
@@ -897,7 +904,8 @@ $s
897904
summary: summary,
898905
text: details,
899906
),
900-
detailsUrl: detailsUrl,
907+
// temporary disabled due to https://github.com/flutter/flutter/issues/181425
908+
//detailsUrl: detailsUrl,
901909
actions: [
902910
const CheckRunAction(
903911
label: 'Re-run Failed',

0 commit comments

Comments
 (0)