Skip to content

Commit 2e4b6f4

Browse files
authored
Add support for symfony/webpack-encore-bundle (#248)
1 parent dbcf8b6 commit 2e4b6f4

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.env

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ SYMFONY_DOCS_SECRET=''
2323
SYMFONY_SECRET=''
2424
SYMFONY_UX_SECRET=''
2525
SYMFONY_WEBPACK_ENCORE_SECRET=''
26+
SYMFONY_WEBPACK_ENCORE_BUNDLE_SECRET=''
2627
BOT_USERNAME='carsonbot'
2728
###> knplabs/github-api ###
2829
#GITHUB_TOKEN=XXX

.platform.app.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,9 @@ crons:
6161
spec: '28 12 * * *'
6262
cmd: croncape bin/console app:issue:ping-stale symfony/webpack-encore --not-updated-for 6months
6363

64+
stale_issues_webpack_encore_bundle:
65+
spec: '18 12 * * *'
66+
cmd: croncape bin/console app:issue:ping-stale symfony/webpack-encore-bundle --not-updated-for 6months
67+
6468
relationships:
6569
database: "mydatabase:postgresql"

config/services.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,19 @@ parameters:
8888
- 'App\Subscriber\AllowEditFromMaintainerSubscriber'
8989
secret: '%env(SYMFONY_WEBPACK_ENCORE_SECRET)%'
9090

91+
symfony/webpack-encore-bundle:
92+
subscribers:
93+
- 'App\Subscriber\AutoLabelFromContentSubscriber'
94+
- 'App\Subscriber\StatusChangeByCommentSubscriber'
95+
- 'App\Subscriber\StatusChangeOnPushSubscriber'
96+
- 'App\Subscriber\StatusChangeByReviewSubscriber'
97+
- 'App\Subscriber\NeedsReviewNewPRSubscriber'
98+
- 'App\Subscriber\BugLabelNewIssueSubscriber'
99+
- 'App\Subscriber\RemoveStalledLabelOnCommentSubscriber'
100+
- 'App\Subscriber\RewriteUnwantedPhrasesSubscriber'
101+
- 'App\Subscriber\AllowEditFromMaintainerSubscriber'
102+
secret: '%env(SYMFONY_WEBPACK_ENCORE_BUNDLE_SECRET)%'
103+
91104
services:
92105
_defaults:
93106
autowire: true

0 commit comments

Comments
 (0)