GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Setup Failed
Push — 8.x ( 3b14ef...1304d7 )
by Kevin
05:46
created
modules/df/df_tools/df_tools_decoupled/src/Controller/FrontController.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,18 +14,15 @@
 block discarded – undo
14 14
     $build = [];
15 15
     if ($this->currentUser()->isAnonymous()) {
16 16
       $build['form'] = $this->formBuilder()->getForm(UserLoginForm::class);
17
-    }
18
-    else {
17
+    } else {
19 18
       if (\Drupal::moduleHandler()->moduleExists('moderation_dashboard')
20 19
         && $this->currentUser()->hasPermission('use moderation dashboard')) {
21 20
           // Permitted users are directed to their moderation dashboard.
22 21
           return $this->redirect('view.moderation_dashboard.page_1', ['user' => $this->currentUser()->id()]);
23
-      }
24
-      elseif ($this->currentUser()->hasPermission('access content overview')) {
22
+      } elseif ($this->currentUser()->hasPermission('access content overview')) {
25 23
         // Permitted users are directed to the admin content page.
26 24
         return $this->redirect('view.content.page_1');
27
-      }
28
-      else {
25
+      } else {
29 26
         $build['heading'] = [
30 27
           '#type' => 'markup',
31 28
           '#markup' => $this->t('This site has no homepage content.'),
Please login to merge, or discard this patch.