@@ -7,7 +7,7 @@ require('dotenv').config({
7
7
path : `.env.${ process . env . NODE_ENV } ` ,
8
8
} ) ;
9
9
10
- const shouldAnnouncementBannerBeShown = false ;
10
+ const shouldAnnouncementBannerBeShown = true ;
11
11
12
12
const plugins = [
13
13
'gatsby-transformer-sharp' ,
@@ -184,8 +184,12 @@ if (shouldAnnouncementBannerBeShown) {
184
184
__dirname ,
185
185
'./src/components/shared/announcement-banner/announcement-banner.js' ,
186
186
) ,
187
- text : 'Enhanced flexibility for multiple scenarios in your test. Check out the new Scenarios API.' ,
188
- link : 'https://k6.io/docs/using-k6/scenarios' ,
187
+ text :
188
+ // eslint-disable-next-line max-len
189
+ '🎉 We are excited to announce that, starting on July 25th at 14:00 UTC, we will merge the k6 community forum with the Grafana community forum' ,
190
+ link :
191
+ // eslint-disable-next-line max-len
192
+ 'https://k6.io/blog/k6-forum-migration/' ,
189
193
buttonText : 'Learn more' ,
190
194
} ,
191
195
// settings below have to match
@@ -199,7 +203,8 @@ if (shouldAnnouncementBannerBeShown) {
199
203
} ,
200
204
} ,
201
205
storage : {
202
- name : 'k6-ab-was-shown' ,
206
+ // changing storage name to force users to see the banner even if it was disabled
207
+ name : 'k6-sb-was-shown' ,
203
208
} ,
204
209
} ;
205
210
if ( isProduction ) {
0 commit comments