We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b0e635 commit 4ddfcadCopy full SHA for 4ddfcad
app_dart/lib/src/service/scheduler.dart
@@ -885,7 +885,14 @@ $s
885
required String details,
886
String? detailsUrl,
887
}) async {
888
- log.info('Failing merge group guard for merge group $headSha in $slug');
+ 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
+''');
896
await _githubChecksService.githubChecksUtil.updateCheckRun(
897
_config,
898
slug,
@@ -897,7 +904,8 @@ $s
904
summary: summary,
905
text: details,
899
906
),
900
- detailsUrl: detailsUrl,
907
+ // temporary disabled due to https://github.com/flutter/flutter/issues/181425
908
+ //detailsUrl: detailsUrl,
901
909
actions: [
902
910
const CheckRunAction(
903
911
label: 'Re-run Failed',
0 commit comments