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.
Completed
Push — 8.x-2.x ( 336e2b...aaf4f9 )
by Devin
04:05
created
df/df_tools/df_tools_workflow/src/EventSubscriber/LatestCheckSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     if ($node = $event->getRequest()->get('node')) {
61 61
       if (\Drupal::currentUser()->hasPermission('view latest version')) {
62 62
         $theme = $this->themeManager->getActiveTheme()->getName();
63
-        $tag = 'config:block.block.' . $theme . '_local_actions';
63
+        $tag = 'config:block.block.'.$theme.'_local_actions';
64 64
         $this->cacheTagsInvalidator->invalidateTags([$tag]);
65 65
       }
66 66
     }
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_workflow/src/Routing/RouteSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
    * {@inheritdoc}
19 19
    */
20 20
   public static function getSubscribedEvents() {
21
-    $events[RoutingEvents::ALTER] = ['onAlterRoutes',-9999];  // negative Values means "late"
21
+    $events[RoutingEvents::ALTER] = ['onAlterRoutes', -9999]; // negative Values means "late"
22 22
     return $events;
23 23
   }
24 24
 
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_workflow/df_tools_workflow.module 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,12 +132,12 @@
 block discarded – undo
132 132
       if ($transition = ModerationStateTransition::load($id)) {
133 133
         $styles = type_style_get_styles($transition);
134 134
         if (!empty($styles)) {
135
-          $build['actions']['quick_draft_form'][$id]['#attributes']['style'] = 'background-color: ' . $styles['color'];
135
+          $build['actions']['quick_draft_form'][$id]['#attributes']['style'] = 'background-color: '.$styles['color'];
136 136
           $build['actions']['quick_draft_form'][$id] = [
137 137
             '#type' => 'container',
138 138
             $build['actions']['quick_draft_form'][$id],
139 139
             [
140
-              '#markup' => '<i class="material-icons">' . $styles['icon'] . '</i>'
140
+              '#markup' => '<i class="material-icons">'.$styles['icon'].'</i>'
141 141
             ],
142 142
             '#attributes' => [
143 143
               'class' => ['moderation-sidebar-button-wrapper'],
Please login to merge, or discard this patch.