Skip to content

Commit

Permalink
Keep only green ones
Browse files Browse the repository at this point in the history
  • Loading branch information
janedbal committed Oct 17, 2024
1 parent 985d270 commit 6a9287c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ jobs:
strategy:
matrix:
include:
-
repo: Setono/SyliusAbandonedCartPlugin
-
repo: Setono/SyliusGoogleAdsPlugin
-
repo: Setono/deployer-dotenv
-
repo: TomasVotruba/unused-public
-
Expand All @@ -28,9 +22,6 @@ jobs:
repo: cdn77/PhpFunctions
-
repo: cdn77/RabbitMQBundle
-
repo: contao-thememanager/core
cdaArgs: --config=depcheck.php
-
repo: contao/contao
cdaArgs: --config=depcheck.php
Expand Down Expand Up @@ -70,10 +61,6 @@ jobs:
repo: oveleon/contao-glossary-bundle
composerArgs: --no-plugins
cdaArgs: --config=depcheck.php
-
repo: oveleon/contao-recommendation-bundle
composerArgs: --no-plugins
cdaArgs: --config=depcheck.php
-
repo: oveleon/contao-theme-compiler-bundle
composerArgs: --no-plugins
Expand Down
8 changes: 6 additions & 2 deletions scripts/refresh-e2e.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,12 @@ function outputYaml(array $items): void
$item['cdaArgs'] = '--config=depcheck.php';
}

if ($item['repo'] === 'Setono/deployer-cron') { // failing
unset($result[$index]);
if (
strpos($item['repo'], 'Setono') === 0
|| $item['repo'] === 'contao-thememanager/core'
|| $item['repo'] === 'oveleon/contao-recommendation-bundle'
) {
unset($result[$index]); // failing builds
}
}

Expand Down

0 comments on commit 6a9287c

Please sign in to comment.