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.

Code

< 40 %
40-60 %
> 60 %
1
<?php
2
namespace Deployer;
3
4
require_once __DIR__ . '/common.php';
5
6
task('deploy', [
7
    'deploy:info',
8
    'deploy:setup',
9
    'deploy:lock',
10
    'deploy:release',
11
    'deploy:update_code',
12
    'deploy:shared',
13
    'deploy:writable',
14
    'deploy:symlink',
15
    'deploy:unlock',
16
    'deploy:cleanup'
17
]);
18
19
//Set drupal site. Change if you use different site
20
set('drupal_site', 'default');
21
22
23
//Drupal 8 shared dirs
24
set('shared_dirs', [
25
    'sites/{{drupal_site}}/files',
26
]);
27
28
//Drupal 8 shared files
29
set('shared_files', [
30
    'sites/{{drupal_site}}/settings.php',
31
    'sites/{{drupal_site}}/services.yml',
32
]);
33
34
//Drupal 8 Writable dirs
35
set('writable_dirs', [
36
    'sites/{{drupal_site}}/files',
37
]);
38