create-svc 0.1.80 → 0.1.81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-svc",
3
- "version": "0.1.80",
3
+ "version": "0.1.81",
4
4
  "description": "Local microservice bootstrap CLI for Cloud Run and Workers services with Neon-backed data.",
5
5
  "module": "index.ts",
6
6
  "type": "module",
@@ -41,7 +41,7 @@ export type BranchProtectionRequest = {
41
41
  };
42
42
 
43
43
  const DEFAULT_BRANCH = "main";
44
- const DEFAULT_REQUIRED_CHECKS = ["test", "deploy"];
44
+ const DEFAULT_REQUIRED_CHECKS = ["test"];
45
45
  const decoder = new TextDecoder();
46
46
  const encoder = new TextEncoder();
47
47
 
package/src/service.ts CHANGED
@@ -209,7 +209,7 @@ export function generatedServiceCommandHelp(argv: string[]) {
209
209
  "Usage:",
210
210
  " service protect-main [--repo owner/name] [--branch main]",
211
211
  "",
212
- "Reconciles generated service branch protection with required test and deploy checks.",
212
+ "Reconciles generated service branch protection with required pull request checks.",
213
213
  ].join("\n");
214
214
  }
215
215
 
@@ -154,7 +154,7 @@ Generated repositories include GitHub Actions workflows for CI and production de
154
154
  {{COMMAND_PROTECT_MAIN}}
155
155
  ```
156
156
 
157
- The protection requires the generated `test` and `deploy` status checks, pull requests, stale-review dismissal, conversation resolution, and admin enforcement. If GitHub permissions are missing, rerun the command with a token that has repo admin access or fine-grained `Administration: write`.
157
+ The protection requires the generated pull request `test` status check, pull requests, stale-review dismissal, conversation resolution, and admin enforcement. If GitHub permissions are missing, rerun the command with a token that has repo admin access or fine-grained `Administration: write`.
158
158
 
159
159
  Go variants use Atlas for migrations:
160
160
 
@@ -79,7 +79,7 @@ Generated repositories include GitHub Actions workflows for CI and production de
79
79
  {{COMMAND_PROTECT_MAIN}}
80
80
  ```
81
81
 
82
- The protection requires the generated `test` and `deploy` status checks, pull requests, stale-review dismissal, conversation resolution, and admin enforcement. If GitHub permissions are missing, rerun the command with a token that has repo admin access or fine-grained `Administration: write`.
82
+ The protection requires the generated pull request `test` status check, pull requests, stale-review dismissal, conversation resolution, and admin enforcement. If GitHub permissions are missing, rerun the command with a token that has repo admin access or fine-grained `Administration: write`.
83
83
 
84
84
  The Trigger.dev CLI is installed in this generated package as a dev dependency
85
85
  from the `trigger.dev` npm package.