Skip to content

Commit f6d44a5

Browse files
committed
Updating GITHUB_WEBHOOK_SECRET description
Updating external examples (that have already had the GITHUB_WEBHOOK_SECRET description updated)
1 parent 85a6fce commit f6d44a5

18 files changed

+44
-44
lines changed

examples/jenkins/pipeline/bluegreen-pipeline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ parameters:
432432
of your repository.
433433
displayName: Context Directory
434434
name: CONTEXT_DIR
435-
- description: A secret string used to configure the GitHub webhook.
435+
- description: Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.
436436
displayName: GitHub Webhook Secret
437437
from: '[a-zA-Z0-9]{40}'
438438
generate: expression

examples/jenkins/pipeline/mapsapp-pipeline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ parameters:
3737
value: master
3838
- name: GITHUB_WEBHOOK_SECRET
3939
displayName: GitHub Webhook Secret
40-
description: A secret string used to configure the GitHub webhook.
40+
description: Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.
4141
generate: expression
4242
from: "[a-zA-Z0-9]{40}"
4343
- name: GENERIC_WEBHOOK_SECRET

examples/jenkins/pipeline/maven-pipeline.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ parameters:
1818
displayName: Source Ref
1919
required: true
2020
value: master
21-
- description: A secret string used to configure the GitHub webhook.
21+
- description: Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.
2222
displayName: GitHub Webhook Secret
2323
from: '[a-zA-Z0-9]{40}'
2424
generate: expression
@@ -78,13 +78,13 @@ objects:
7878
timeout(time: 20, unit: 'MINUTES') {
7979
def appName="${APP_NAME}"
8080
def project=""
81-
81+
8282
node {
8383
stage("Initialize") {
8484
project = env.PROJECT_NAME
8585
}
8686
}
87-
87+
8888
node("maven") {
8989
stage("Checkout") {
9090
git url: "${GIT_SOURCE_URL}", branch: "${GIT_SOURCE_REF}"
@@ -94,7 +94,7 @@ objects:
9494
stash name:"war", includes:"target/ROOT.war"
9595
}
9696
}
97-
97+
9898
node {
9999
stage("Build Image") {
100100
unstash name:"war"

examples/jenkins/pipeline/samplepipeline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ parameters:
7575
of your repository.
7676
displayName: Context Directory
7777
name: CONTEXT_DIR
78-
- description: A secret string used to configure the GitHub webhook.
78+
- description: Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.
7979
displayName: GitHub Webhook Secret
8080
from: '[a-zA-Z0-9]{40}'
8181
generate: expression

examples/quickstarts/cakephp-mysql-persistent.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@
513513
{
514514
"name": "GITHUB_WEBHOOK_SECRET",
515515
"displayName": "GitHub Webhook Secret",
516-
"description": "A secret string used to configure the GitHub webhook.",
516+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
517517
"generate": "expression",
518518
"from": "[a-zA-Z0-9]{40}"
519519
},

examples/quickstarts/cakephp-mysql.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@
487487
{
488488
"name": "GITHUB_WEBHOOK_SECRET",
489489
"displayName": "GitHub Webhook Secret",
490-
"description": "A secret string used to configure the GitHub webhook.",
490+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
491491
"generate": "expression",
492492
"from": "[a-zA-Z0-9]{40}"
493493
},

examples/quickstarts/dancer-mysql-persistent.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@
478478
{
479479
"name": "GITHUB_WEBHOOK_SECRET",
480480
"displayName": "GitHub Webhook Secret",
481-
"description": "A secret string used to configure the GitHub webhook.",
481+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
482482
"generate": "expression",
483483
"from": "[a-zA-Z0-9]{40}"
484484
},

examples/quickstarts/dancer-mysql.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@
452452
{
453453
"name": "GITHUB_WEBHOOK_SECRET",
454454
"displayName": "GitHub Webhook Secret",
455-
"description": "A secret string used to configure the GitHub webhook.",
455+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
456456
"generate": "expression",
457457
"from": "[a-zA-Z0-9]{40}"
458458
},

examples/quickstarts/django-postgresql-persistent.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@
482482
{
483483
"name": "GITHUB_WEBHOOK_SECRET",
484484
"displayName": "GitHub Webhook Secret",
485-
"description": "A secret string used to configure the GitHub webhook.",
485+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
486486
"generate": "expression",
487487
"from": "[a-zA-Z0-9]{40}"
488488
},

examples/quickstarts/django-postgresql.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
{
457457
"name": "GITHUB_WEBHOOK_SECRET",
458458
"displayName": "GitHub Webhook Secret",
459-
"description": "A secret string used to configure the GitHub webhook.",
459+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
460460
"generate": "expression",
461461
"from": "[a-zA-Z0-9]{40}"
462462
},

examples/quickstarts/httpd.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@
259259
{
260260
"name": "GITHUB_WEBHOOK_SECRET",
261261
"displayName": "GitHub Webhook Secret",
262-
"description": "A secret string used to configure the GitHub webhook.",
262+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
263263
"generate": "expression",
264264
"from": "[a-zA-Z0-9]{40}"
265265
},

examples/quickstarts/nodejs-mongodb-persistent.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@
494494
{
495495
"name": "GITHUB_WEBHOOK_SECRET",
496496
"displayName": "GitHub Webhook Secret",
497-
"description": "A secret string used to configure the GitHub webhook.",
497+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
498498
"generate": "expression",
499499
"from": "[a-zA-Z0-9]{40}"
500500
},

examples/quickstarts/nodejs-mongodb.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@
470470
{
471471
"name": "GITHUB_WEBHOOK_SECRET",
472472
"displayName": "GitHub Webhook Secret",
473-
"description": "A secret string used to configure the GitHub webhook.",
473+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
474474
"generate": "expression",
475475
"from": "[a-zA-Z0-9]{40}"
476476
},

examples/quickstarts/rails-postgresql-persistent.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@
533533
{
534534
"name": "GITHUB_WEBHOOK_SECRET",
535535
"displayName": "GitHub Webhook Secret",
536-
"description": "A secret string used to configure the GitHub webhook.",
536+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
537537
"generate": "expression",
538538
"from": "[a-zA-Z0-9]{40}"
539539
},

examples/quickstarts/rails-postgresql.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@
507507
{
508508
"name": "GITHUB_WEBHOOK_SECRET",
509509
"displayName": "GitHub Webhook Secret",
510-
"description": "A secret string used to configure the GitHub webhook.",
510+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
511511
"generate": "expression",
512512
"from": "[a-zA-Z0-9]{40}"
513513
},

examples/wordpress/template/wordpress-mysql.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@
312312
},
313313
{
314314
"name": "GITHUB_WEBHOOK_SECRET",
315-
"description": "A secret string used to configure the GitHub webhook",
315+
"description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
316316
"generate": "expression",
317317
"from": "[a-zA-Z0-9]{40}"
318318
},

pkg/bootstrap/bindata.go

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/extended/testdata/bindata.go

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)