diff --git a/.env b/.env index 2bd605c..7cd2c56 100644 --- a/.env +++ b/.env @@ -23,6 +23,7 @@ SYMFONY_DOCS_SECRET='' SYMFONY_SECRET='' SYMFONY_UX_SECRET='' SYMFONY_WEBPACK_ENCORE_SECRET='' +SYMFONY_WEBPACK_ENCORE_BUNDLE_SECRET='' BOT_USERNAME='carsonbot' ###> knplabs/github-api ### #GITHUB_TOKEN=XXX diff --git a/.platform.app.yaml b/.platform.app.yaml index 0378a59..426123e 100644 --- a/.platform.app.yaml +++ b/.platform.app.yaml @@ -61,5 +61,9 @@ crons: spec: '28 12 * * *' cmd: croncape bin/console app:issue:ping-stale symfony/webpack-encore --not-updated-for 6months + stale_issues_webpack_encore_bundle: + spec: '18 12 * * *' + cmd: croncape bin/console app:issue:ping-stale symfony/webpack-encore-bundle --not-updated-for 6months + relationships: database: "mydatabase:postgresql" diff --git a/config/services.yaml b/config/services.yaml index 5910213..57048c9 100644 --- a/config/services.yaml +++ b/config/services.yaml @@ -88,6 +88,19 @@ parameters: - 'App\Subscriber\AllowEditFromMaintainerSubscriber' secret: '%env(SYMFONY_WEBPACK_ENCORE_SECRET)%' + symfony/webpack-encore-bundle: + subscribers: + - 'App\Subscriber\AutoLabelFromContentSubscriber' + - 'App\Subscriber\StatusChangeByCommentSubscriber' + - 'App\Subscriber\StatusChangeOnPushSubscriber' + - 'App\Subscriber\StatusChangeByReviewSubscriber' + - 'App\Subscriber\NeedsReviewNewPRSubscriber' + - 'App\Subscriber\BugLabelNewIssueSubscriber' + - 'App\Subscriber\RemoveStalledLabelOnCommentSubscriber' + - 'App\Subscriber\RewriteUnwantedPhrasesSubscriber' + - 'App\Subscriber\AllowEditFromMaintainerSubscriber' + secret: '%env(SYMFONY_WEBPACK_ENCORE_BUNDLE_SECRET)%' + services: _defaults: autowire: true