Skip to content

Commit d4c3aa0

Browse files
committed
fix(github-cli): de-Vercel-ize webhook-info / set-webhook-secret strings
Last batch of stale 'Vercel' framing in CLI command output, missed in the original de-Vercel-ize sweep. Provider-agnostic now: webhook-info header reads 'preview-deploy screenshot pipeline', the closing note lists Vercel/Amplify/Netlify/GitHub Actions as example providers, and the smoke-test instruction says 'push to a PR-attached branch' rather than 'trigger a Vercel preview deploy'. No behaviour change; pure copy.
1 parent f9824f4 commit d4c3aa0

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

cli/src/commands/github.ts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { CliError } from '../errors';
2929

3030
export function makeGithubCommand(): Command {
3131
const github = new Command('github')
32-
.description('Manage GitHub integration (deployment-status webhook for Vercel preview screenshots)');
32+
.description('Manage GitHub integration (deployment-status webhook for preview-deploy screenshots)');
3333

3434
github.addCommand(
3535
new Command('webhook-info')
@@ -59,7 +59,7 @@ export function makeGithubCommand(): Command {
5959

6060
const bar = '═'.repeat(72);
6161
console.log(bar);
62-
console.log('GitHub webhook configuration (Vercel preview screenshot pipeline)');
62+
console.log('GitHub webhook configuration (preview-deploy screenshot pipeline)');
6363
console.log(bar);
6464
console.log();
6565
console.log('In GitHub, on the repo whose previews should generate screenshots:');
@@ -81,8 +81,9 @@ export function makeGithubCommand(): Command {
8181
console.log(' (Stack output GitHubWebhookSecretArn not found — check `aws cloudformation describe-stacks`.)');
8282
}
8383
console.log();
84-
console.log('Note: Vercel posts deployment_status events via the GitHub Deployments API,');
85-
console.log('so this single webhook covers all Vercel-connected previews on the repo.');
84+
console.log('Note: deploy providers (Vercel, Amplify Hosting, Netlify, GitHub Actions');
85+
console.log('custom CD, etc.) post deployment_status events via the GitHub Deployments');
86+
console.log('API, so this single webhook covers every preview your provider builds.');
8687
console.log(bar);
8788
}),
8889
);
@@ -150,9 +151,9 @@ export function makeGithubCommand(): Command {
150151
console.log();
151152
console.log('✅ Stored webhook signing secret.');
152153
console.log();
153-
console.log('Test by triggering a Vercel preview deploy on the configured repo. The');
154-
console.log('receiver Lambda log group should show a successful HMAC verification on');
155-
console.log('the next deployment_status event.');
154+
console.log('Test by triggering a preview deploy on the configured repo (push to a');
155+
console.log('PR-attached branch). The receiver Lambda log group should show a successful');
156+
console.log('HMAC verification on the next deployment_status event.');
156157
}),
157158
);
158159

0 commit comments

Comments
 (0)