Skip to content

Commit 8b5cdb6

Browse files
committed
Add support for symfony/webpack-encore
1 parent 4e612d6 commit 8b5cdb6

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ APP_SECRET=5dd8ffca252d95e8b4fb5b2d15310e92
2222
SYMFONY_DOCS_SECRET=''
2323
SYMFONY_SECRET=''
2424
SYMFONY_UX_SECRET=''
25+
SYMFONY_WEBPACK_ENCORE_SECRET=''
2526
BOT_USERNAME='carsonbot'
2627
###> knplabs/github-api ###
2728
#GITHUB_TOKEN=XXX

.platform.app.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,9 @@ crons:
5757
spec: '38 12 * * *'
5858
cmd: croncape bin/console app:issue:ping-stale symfony/ux --not-updated-for 6months
5959

60+
stale_issues_webpack_encore:
61+
spec: '28 12 * * *'
62+
cmd: croncape bin/console app:issue:ping-stale symfony/webpack-encore --not-updated-for 6months
63+
6064
relationships:
6165
database: "mydatabase:postgresql"

config/services.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,19 @@ parameters:
7575
- 'App\Subscriber\AllowEditFromMaintainerSubscriber'
7676
secret: '%env(SYMFONY_UX_SECRET)%'
7777

78+
symfony/webpack-encore:
79+
subscribers:
80+
- 'App\Subscriber\AutoLabelFromContentSubscriber'
81+
- 'App\Subscriber\StatusChangeByCommentSubscriber'
82+
- 'App\Subscriber\StatusChangeOnPushSubscriber'
83+
- 'App\Subscriber\StatusChangeByReviewSubscriber'
84+
- 'App\Subscriber\NeedsReviewNewPRSubscriber'
85+
- 'App\Subscriber\BugLabelNewIssueSubscriber'
86+
- 'App\Subscriber\RemoveStalledLabelOnCommentSubscriber'
87+
- 'App\Subscriber\RewriteUnwantedPhrasesSubscriber'
88+
- 'App\Subscriber\AllowEditFromMaintainerSubscriber'
89+
secret: '%env(SYMFONY_WEBPACK_ENCORE_SECRET)%'
90+
7891
services:
7992
_defaults:
8093
autowire: true

0 commit comments

Comments
 (0)