@cbnventures/nova 0.15.4 → 0.16.0
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/build/package.json +1 -1
- package/build/src/cli/generate/github/workflows.d.ts +6 -1
- package/build/src/cli/generate/github/workflows.d.ts.map +1 -1
- package/build/src/cli/generate/github/workflows.js +244 -6
- package/build/src/cli/generate/github/workflows.js.map +1 -1
- package/build/src/cli/utility/initialize.d.ts.map +1 -1
- package/build/src/cli/utility/initialize.js +228 -4
- package/build/src/cli/utility/initialize.js.map +1 -1
- package/build/src/lib/nova-config.d.ts.map +1 -1
- package/build/src/lib/nova-config.js +33 -0
- package/build/src/lib/nova-config.js.map +1 -1
- package/build/src/lib/regex.d.ts +4 -0
- package/build/src/lib/regex.d.ts.map +1 -1
- package/build/src/lib/regex.js +4 -0
- package/build/src/lib/regex.js.map +1 -1
- package/build/src/lib/workflow-templates.d.ts.map +1 -1
- package/build/src/lib/workflow-templates.js +176 -113
- package/build/src/lib/workflow-templates.js.map +1 -1
- package/build/src/types/cli/generate/github/workflows.d.ts +178 -0
- package/build/src/types/cli/utility/initialize.d.ts +216 -0
- package/build/src/types/lib/nova-config.d.ts +24 -0
- package/build/src/types/lib/workflow-templates.d.ts +53 -0
- package/build/src/types/shared.d.ts +103 -1
- package/build/src/types/tests/cli/generate/github/workflows-helpers.test.d.ts +54 -0
- package/build/src/types/tests/cli/generate/github/workflows.test.d.ts +12 -2
- package/build/src/types/tests/lib/workflow-templates.test.d.ts +10 -70
- package/build/templates/generators/github/workflows/check-sponsor-gated-issues/base.yml +6 -10
- package/build/templates/generators/github/workflows/check-sponsor-gated-issues/triggers/issue-comment.yml +5 -0
- package/build/templates/generators/github/workflows/check-sponsor-gated-issues/triggers/issues.yml +5 -0
- package/build/templates/generators/github/workflows/lock-inactive-issues/triggers/schedule-daily.yml +5 -0
- package/build/templates/generators/github/workflows/lock-inactive-issues/triggers/schedule-monthly.yml +5 -0
- package/build/templates/generators/github/workflows/{publish-to-cloudflare-pages-docusaurus → publish}/base.yml +8 -17
- package/build/templates/generators/github/workflows/publish/targets/aws-amplify-nextjs.yml +32 -0
- package/build/templates/generators/github/workflows/publish/targets/cloudflare-pages-docusaurus.yml +25 -0
- package/build/templates/generators/github/workflows/publish/targets/docker-hub.yml +47 -0
- package/build/templates/generators/github/workflows/publish/targets/ghcr.yml +47 -0
- package/build/templates/generators/github/workflows/publish/targets/github-packages.yml +84 -0
- package/build/templates/generators/github/workflows/publish/targets/github-pages-docusaurus.yml +43 -0
- package/build/templates/generators/github/workflows/publish/targets/npm.yml +60 -0
- package/build/templates/generators/github/workflows/publish/targets/vercel-nextjs.yml +45 -0
- package/build/templates/generators/github/workflows/{publish-to-npm → publish}/triggers/release.yml +1 -1
- package/build/templates/generators/github/workflows/{publish-to-npm → publish}/triggers/workflow-run-any.yml +1 -1
- package/build/templates/generators/github/workflows/{publish-to-npm → publish}/triggers/workflow-run-failure.yml +1 -1
- package/build/templates/generators/github/workflows/{publish-to-npm → publish}/triggers/workflow-run-success.yml +1 -1
- package/package.json +1 -1
- package/build/templates/generators/github/workflows/publish-to-aws-amplify-nextjs/base.yml +0 -54
- package/build/templates/generators/github/workflows/publish-to-aws-amplify-nextjs/triggers/push.yml +0 -5
- package/build/templates/generators/github/workflows/publish-to-aws-amplify-nextjs/triggers/release.yml +0 -5
- package/build/templates/generators/github/workflows/publish-to-cloudflare-pages-docusaurus/triggers/push.yml +0 -5
- package/build/templates/generators/github/workflows/publish-to-cloudflare-pages-docusaurus/triggers/release.yml +0 -5
- package/build/templates/generators/github/workflows/publish-to-docker-hub/base.yml +0 -59
- package/build/templates/generators/github/workflows/publish-to-docker-hub/triggers/release.yml +0 -5
- package/build/templates/generators/github/workflows/publish-to-docker-hub/triggers/workflow-run-any.yml +0 -7
- package/build/templates/generators/github/workflows/publish-to-docker-hub/triggers/workflow-run-failure.yml +0 -8
- package/build/templates/generators/github/workflows/publish-to-docker-hub/triggers/workflow-run-success.yml +0 -8
- package/build/templates/generators/github/workflows/publish-to-github-packages/base.yml +0 -120
- package/build/templates/generators/github/workflows/publish-to-github-packages/triggers/release.yml +0 -5
- package/build/templates/generators/github/workflows/publish-to-github-packages/triggers/workflow-run-any.yml +0 -7
- package/build/templates/generators/github/workflows/publish-to-github-packages/triggers/workflow-run-failure.yml +0 -8
- package/build/templates/generators/github/workflows/publish-to-github-packages/triggers/workflow-run-success.yml +0 -8
- package/build/templates/generators/github/workflows/publish-to-github-pages-docusaurus/base.yml +0 -79
- package/build/templates/generators/github/workflows/publish-to-github-pages-docusaurus/triggers/push.yml +0 -5
- package/build/templates/generators/github/workflows/publish-to-github-pages-docusaurus/triggers/release.yml +0 -5
- package/build/templates/generators/github/workflows/publish-to-npm/base.yml +0 -97
- /package/build/templates/generators/github/workflows/lock-inactive-issues/triggers/{schedule.yml → schedule-weekly.yml} +0 -0
|
@@ -2,6 +2,16 @@ export const libWorkflowTemplatesMetadata = [
|
|
|
2
2
|
{
|
|
3
3
|
name: 'check-sponsor-gated-issues',
|
|
4
4
|
description: 'Gate issues by GitHub sponsor status',
|
|
5
|
+
supportsScopes: false,
|
|
6
|
+
supportsTargets: false,
|
|
7
|
+
needsManuallyFallback: false,
|
|
8
|
+
permissions: {
|
|
9
|
+
contents: 'read',
|
|
10
|
+
},
|
|
11
|
+
jobPermissions: {
|
|
12
|
+
contents: 'read',
|
|
13
|
+
issues: 'write',
|
|
14
|
+
},
|
|
5
15
|
variables: {
|
|
6
16
|
'GITHUB_TOKEN': {
|
|
7
17
|
format: 'secret', default: 'GITHUB_TOKEN', auto: true,
|
|
@@ -51,135 +61,188 @@ export const libWorkflowTemplatesMetadata = [
|
|
|
51
61
|
{
|
|
52
62
|
name: 'lock-inactive-issues',
|
|
53
63
|
description: 'Lock inactive issues and pull requests',
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
},
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
name: 'publish-to-aws-amplify-nextjs',
|
|
62
|
-
description: 'Deploy Next.js to AWS Amplify',
|
|
63
|
-
variables: {
|
|
64
|
-
'AWS_ACCESS_KEY_ID': {
|
|
65
|
-
format: 'secret', default: 'AWS_ACCESS_KEY_ID',
|
|
66
|
-
description: 'AWS access key ID for Amplify deployments',
|
|
67
|
-
},
|
|
68
|
-
'AWS_SECRET_ACCESS_KEY': {
|
|
69
|
-
format: 'secret', default: 'AWS_SECRET_ACCESS_KEY',
|
|
70
|
-
description: 'AWS secret access key for Amplify deployments',
|
|
71
|
-
},
|
|
72
|
-
'AMPLIFY_APP_ID': {
|
|
73
|
-
format: 'var', default: 'AMPLIFY_APP_ID',
|
|
74
|
-
description: 'Amplify application ID',
|
|
75
|
-
},
|
|
76
|
-
'AMPLIFY_BRANCH_NAME': {
|
|
77
|
-
format: 'var', default: 'AMPLIFY_BRANCH_NAME',
|
|
78
|
-
description: 'Amplify branch name to deploy to',
|
|
79
|
-
},
|
|
80
|
-
'AWS_REGION': {
|
|
81
|
-
format: 'var', default: 'AWS_REGION',
|
|
82
|
-
description: 'AWS region where the Amplify app is hosted',
|
|
83
|
-
},
|
|
64
|
+
supportsScopes: false,
|
|
65
|
+
supportsTargets: false,
|
|
66
|
+
permissions: {
|
|
67
|
+
contents: 'read',
|
|
84
68
|
},
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
name: 'publish-to-cloudflare-pages-docusaurus',
|
|
88
|
-
description: 'Deploy Docusaurus to Cloudflare Pages',
|
|
89
|
-
variables: {
|
|
90
|
-
'CLOUDFLARE_API_TOKEN': {
|
|
91
|
-
format: 'secret', default: 'CLOUDFLARE_API_TOKEN',
|
|
92
|
-
description: 'Cloudflare API token with Pages deployment permissions',
|
|
93
|
-
},
|
|
94
|
-
'CLOUDFLARE_ACCOUNT_ID': {
|
|
95
|
-
format: 'var', default: 'CLOUDFLARE_ACCOUNT_ID',
|
|
96
|
-
description: 'Cloudflare account ID',
|
|
97
|
-
},
|
|
98
|
-
'CLOUDFLARE_PROJECT_NAME': {
|
|
99
|
-
format: 'var', default: 'CLOUDFLARE_PROJECT_NAME',
|
|
100
|
-
description: 'Cloudflare Pages project name',
|
|
101
|
-
},
|
|
102
|
-
'ROOT_WORKING_DIR': {
|
|
103
|
-
format: 'literal',
|
|
104
|
-
description: 'Relative path to the project root',
|
|
105
|
-
example: './',
|
|
106
|
-
},
|
|
107
|
-
'DOCUSAURUS_WORKING_DIR': {
|
|
108
|
-
format: 'literal',
|
|
109
|
-
description: 'Relative path to the Docusaurus app directory',
|
|
110
|
-
example: './apps/docs',
|
|
111
|
-
},
|
|
69
|
+
jobPermissions: {
|
|
70
|
+
issues: 'write',
|
|
112
71
|
},
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
name: 'publish-to-docker-hub',
|
|
116
|
-
description: 'Publish Docker images to Docker Hub',
|
|
117
|
-
variables: {
|
|
118
|
-
'DOCKERHUB_TOKEN': {
|
|
119
|
-
format: 'secret', default: 'DOCKERHUB_TOKEN',
|
|
120
|
-
description: 'Docker Hub access token for publishing images',
|
|
121
|
-
},
|
|
122
|
-
'DOCKERHUB_USERNAME': {
|
|
123
|
-
format: 'var', default: 'DOCKERHUB_USERNAME',
|
|
124
|
-
description: 'Docker Hub username or organization name',
|
|
125
|
-
},
|
|
126
|
-
},
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
name: 'publish-to-github-packages',
|
|
130
|
-
description: 'Publish packages to GitHub Packages',
|
|
131
72
|
variables: {
|
|
132
73
|
'GITHUB_TOKEN': {
|
|
133
74
|
format: 'secret', default: 'GITHUB_TOKEN', auto: true,
|
|
134
75
|
},
|
|
135
|
-
'ROOT_WORKING_DIR': {
|
|
136
|
-
format: 'literal',
|
|
137
|
-
description: 'Relative path to the project root',
|
|
138
|
-
example: './',
|
|
139
|
-
},
|
|
140
|
-
'NPM_WORKING_DIR': {
|
|
141
|
-
format: 'literal',
|
|
142
|
-
description: 'Relative path to the package directory',
|
|
143
|
-
example: './packages/my-package',
|
|
144
|
-
},
|
|
145
76
|
},
|
|
146
77
|
},
|
|
147
78
|
{
|
|
148
|
-
name: 'publish
|
|
149
|
-
description: '
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
'ROOT_WORKING_DIR': {
|
|
155
|
-
format: 'literal',
|
|
156
|
-
description: 'Relative path to the project root',
|
|
157
|
-
example: './',
|
|
158
|
-
},
|
|
159
|
-
'DOCUSAURUS_WORKING_DIR': {
|
|
160
|
-
format: 'literal',
|
|
161
|
-
description: 'Relative path to the Docusaurus app directory',
|
|
162
|
-
example: './apps/docs',
|
|
163
|
-
},
|
|
79
|
+
name: 'publish',
|
|
80
|
+
description: 'Build once and publish to multiple targets',
|
|
81
|
+
supportsScopes: true,
|
|
82
|
+
supportsTargets: true,
|
|
83
|
+
permissions: {
|
|
84
|
+
contents: 'read',
|
|
164
85
|
},
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
name: 'publish-to-npm',
|
|
168
|
-
description: 'Publish packages to npm with token or OIDC trusted publishing',
|
|
169
86
|
variables: {
|
|
170
|
-
'NPM_TOKEN': {
|
|
171
|
-
format: 'secret', default: 'NPM_TOKEN',
|
|
172
|
-
description: 'npm access token for publishing, leave empty for OIDC trusted publishing',
|
|
173
|
-
},
|
|
174
87
|
'ROOT_WORKING_DIR': {
|
|
175
88
|
format: 'literal',
|
|
176
89
|
description: 'Relative path to the project root',
|
|
177
90
|
example: './',
|
|
178
91
|
},
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
92
|
+
},
|
|
93
|
+
targets: {
|
|
94
|
+
'npm': {
|
|
95
|
+
description: 'Publish package to npm',
|
|
96
|
+
artifactPaths: ['{workingDir}/build'],
|
|
97
|
+
variables: {
|
|
98
|
+
'NPM_TOKEN': {
|
|
99
|
+
format: 'secret', default: 'NPM_TOKEN',
|
|
100
|
+
description: 'npm access token for publishing. Skip creating this secret in GitHub if using OIDC trusted publishing',
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
permissions: {
|
|
104
|
+
'contents': 'read',
|
|
105
|
+
'id-token': 'write',
|
|
106
|
+
},
|
|
107
|
+
},
|
|
108
|
+
'github-packages': {
|
|
109
|
+
description: 'Publish package to GitHub Packages',
|
|
110
|
+
artifactPaths: ['{workingDir}/build'],
|
|
111
|
+
variables: {
|
|
112
|
+
'GITHUB_TOKEN': {
|
|
113
|
+
format: 'secret', default: 'GITHUB_TOKEN', auto: true,
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
permissions: {
|
|
117
|
+
'contents': 'read',
|
|
118
|
+
'packages': 'write',
|
|
119
|
+
'id-token': 'write',
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
'docker-hub': {
|
|
123
|
+
description: 'Publish Docker image to Docker Hub',
|
|
124
|
+
artifactPaths: [],
|
|
125
|
+
variables: {
|
|
126
|
+
'DOCKERHUB_TOKEN': {
|
|
127
|
+
format: 'secret', default: 'DOCKERHUB_TOKEN',
|
|
128
|
+
description: 'Docker Hub access token for publishing images',
|
|
129
|
+
},
|
|
130
|
+
'DOCKERHUB_USERNAME': {
|
|
131
|
+
format: 'var', default: 'DOCKERHUB_USERNAME',
|
|
132
|
+
description: 'Docker Hub username or organization name',
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
permissions: {
|
|
136
|
+
'contents': 'read',
|
|
137
|
+
'attestations': 'write',
|
|
138
|
+
'id-token': 'write',
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
'ghcr': {
|
|
142
|
+
description: 'Publish Docker image to GitHub Container Registry',
|
|
143
|
+
artifactPaths: [],
|
|
144
|
+
variables: {
|
|
145
|
+
'GITHUB_TOKEN': {
|
|
146
|
+
format: 'secret', default: 'GITHUB_TOKEN', auto: true,
|
|
147
|
+
},
|
|
148
|
+
},
|
|
149
|
+
permissions: {
|
|
150
|
+
'contents': 'read',
|
|
151
|
+
'packages': 'write',
|
|
152
|
+
'attestations': 'write',
|
|
153
|
+
'id-token': 'write',
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
'cloudflare-pages-docusaurus': {
|
|
157
|
+
description: 'Deploy Docusaurus to Cloudflare Pages',
|
|
158
|
+
artifactPaths: ['{workingDir}/build'],
|
|
159
|
+
variables: {
|
|
160
|
+
'CLOUDFLARE_API_TOKEN': {
|
|
161
|
+
format: 'secret', default: 'CLOUDFLARE_API_TOKEN',
|
|
162
|
+
description: 'Cloudflare API token with Pages deployment permissions',
|
|
163
|
+
},
|
|
164
|
+
'CLOUDFLARE_ACCOUNT_ID': {
|
|
165
|
+
format: 'var', default: 'CLOUDFLARE_ACCOUNT_ID',
|
|
166
|
+
description: 'Cloudflare account ID',
|
|
167
|
+
},
|
|
168
|
+
'CLOUDFLARE_PROJECT_NAME': {
|
|
169
|
+
format: 'var', default: 'CLOUDFLARE_PROJECT_NAME',
|
|
170
|
+
description: 'Cloudflare Pages project name',
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
permissions: {
|
|
174
|
+
contents: 'read',
|
|
175
|
+
},
|
|
176
|
+
},
|
|
177
|
+
'github-pages-docusaurus': {
|
|
178
|
+
description: 'Deploy Docusaurus to GitHub Pages',
|
|
179
|
+
artifactPaths: ['{workingDir}/build'],
|
|
180
|
+
variables: {
|
|
181
|
+
'GITHUB_TOKEN': {
|
|
182
|
+
format: 'secret', default: 'GITHUB_TOKEN', auto: true,
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
permissions: {
|
|
186
|
+
'contents': 'read',
|
|
187
|
+
'pages': 'write',
|
|
188
|
+
'id-token': 'write',
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
'aws-amplify-nextjs': {
|
|
192
|
+
description: 'Deploy Next.js to AWS Amplify',
|
|
193
|
+
artifactPaths: [
|
|
194
|
+
'{workingDir}/.next',
|
|
195
|
+
'{workingDir}/public',
|
|
196
|
+
],
|
|
197
|
+
variables: {
|
|
198
|
+
'AWS_ACCESS_KEY_ID': {
|
|
199
|
+
format: 'secret', default: 'AWS_ACCESS_KEY_ID',
|
|
200
|
+
description: 'AWS access key ID for Amplify deployments',
|
|
201
|
+
},
|
|
202
|
+
'AWS_SECRET_ACCESS_KEY': {
|
|
203
|
+
format: 'secret', default: 'AWS_SECRET_ACCESS_KEY',
|
|
204
|
+
description: 'AWS secret access key for Amplify deployments',
|
|
205
|
+
},
|
|
206
|
+
'AMPLIFY_APP_ID': {
|
|
207
|
+
format: 'var', default: 'AMPLIFY_APP_ID',
|
|
208
|
+
description: 'Amplify application ID',
|
|
209
|
+
},
|
|
210
|
+
'AMPLIFY_BRANCH_NAME': {
|
|
211
|
+
format: 'var', default: 'AMPLIFY_BRANCH_NAME',
|
|
212
|
+
description: 'Amplify branch name to deploy to',
|
|
213
|
+
},
|
|
214
|
+
'AWS_REGION': {
|
|
215
|
+
format: 'var', default: 'AWS_REGION',
|
|
216
|
+
description: 'AWS region where the Amplify app is hosted',
|
|
217
|
+
},
|
|
218
|
+
},
|
|
219
|
+
permissions: {
|
|
220
|
+
contents: 'read',
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
'vercel-nextjs': {
|
|
224
|
+
description: 'Deploy Next.js to Vercel',
|
|
225
|
+
artifactPaths: [
|
|
226
|
+
'{workingDir}/.next',
|
|
227
|
+
'{workingDir}/public',
|
|
228
|
+
],
|
|
229
|
+
variables: {
|
|
230
|
+
'VERCEL_TOKEN': {
|
|
231
|
+
format: 'secret', default: 'VERCEL_TOKEN',
|
|
232
|
+
description: 'Vercel access token with deploy permissions',
|
|
233
|
+
},
|
|
234
|
+
'VERCEL_ORG_ID': {
|
|
235
|
+
format: 'var', default: 'VERCEL_ORG_ID',
|
|
236
|
+
description: 'Vercel organization ID',
|
|
237
|
+
},
|
|
238
|
+
'VERCEL_PROJECT_ID': {
|
|
239
|
+
format: 'var', default: 'VERCEL_PROJECT_ID',
|
|
240
|
+
description: 'Vercel project ID',
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
permissions: {
|
|
244
|
+
contents: 'read',
|
|
245
|
+
},
|
|
183
246
|
},
|
|
184
247
|
},
|
|
185
248
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-templates.js","sourceRoot":"","sources":["../../../src/lib/workflow-templates.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"workflow-templates.js","sourceRoot":"","sources":["../../../src/lib/workflow-templates.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import type { SharedGeneratorRunResult } from '../../../shared.d.ts';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* CLI - Generate - GitHub - Workflows - Build Command.
|
|
5
|
+
*
|
|
6
|
+
* @since 0.16.0
|
|
7
|
+
*/
|
|
8
|
+
export type CliGenerateGithubWorkflowsBuildCommandScriptName = 'check' | 'build';
|
|
9
|
+
|
|
10
|
+
export type CliGenerateGithubWorkflowsBuildCommandWorkspaceNames = string[];
|
|
11
|
+
|
|
12
|
+
export type CliGenerateGithubWorkflowsBuildCommandUseTurbo = boolean;
|
|
13
|
+
|
|
14
|
+
export type CliGenerateGithubWorkflowsBuildCommandReturns = string;
|
|
15
|
+
|
|
16
|
+
export type CliGenerateGithubWorkflowsBuildCommandFlag = string;
|
|
17
|
+
|
|
18
|
+
export type CliGenerateGithubWorkflowsBuildCommandFlags = CliGenerateGithubWorkflowsBuildCommandFlag[];
|
|
19
|
+
|
|
3
20
|
/**
|
|
4
21
|
* CLI - Generate - GitHub - Workflows - Build Merged Jobs Condition.
|
|
5
22
|
*
|
|
@@ -89,6 +106,8 @@ export type CliGenerateGithubWorkflowsBuildMergedRunNameTriggerData = {
|
|
|
89
106
|
jobsCondition: CliGenerateGithubWorkflowsBuildMergedRunNameTriggerDataJobsCondition;
|
|
90
107
|
};
|
|
91
108
|
|
|
109
|
+
export type CliGenerateGithubWorkflowsBuildMergedRunNameNeedsManuallyFallback = boolean;
|
|
110
|
+
|
|
92
111
|
export type CliGenerateGithubWorkflowsBuildMergedRunNameReturns = string;
|
|
93
112
|
|
|
94
113
|
export type CliGenerateGithubWorkflowsBuildMergedRunNameContextExpressions = string[];
|
|
@@ -105,6 +124,10 @@ export type CliGenerateGithubWorkflowsBuildMergedRunNameRunNamePrefix = string;
|
|
|
105
124
|
|
|
106
125
|
export type CliGenerateGithubWorkflowsBuildMergedRunNameRunNameSuffix = string;
|
|
107
126
|
|
|
127
|
+
export type CliGenerateGithubWorkflowsBuildMergedRunNameHasEmptyFallback = boolean;
|
|
128
|
+
|
|
129
|
+
export type CliGenerateGithubWorkflowsBuildMergedRunNameShouldAppendFallback = boolean;
|
|
130
|
+
|
|
108
131
|
export type CliGenerateGithubWorkflowsBuildMergedRunNameMergedContextExpression = string;
|
|
109
132
|
|
|
110
133
|
/**
|
|
@@ -128,6 +151,72 @@ export type CliGenerateGithubWorkflowsDetectCircularDependsOnCurrentEntry = impo
|
|
|
128
151
|
|
|
129
152
|
export type CliGenerateGithubWorkflowsDetectCircularDependsOnKey = string;
|
|
130
153
|
|
|
154
|
+
/**
|
|
155
|
+
* CLI - Generate - GitHub - Workflows - Detect Turbo.
|
|
156
|
+
*
|
|
157
|
+
* @since 0.16.0
|
|
158
|
+
*/
|
|
159
|
+
export type CliGenerateGithubWorkflowsDetectTurboProjectDirectory = string;
|
|
160
|
+
|
|
161
|
+
export type CliGenerateGithubWorkflowsDetectTurboReturns = Promise<boolean>;
|
|
162
|
+
|
|
163
|
+
export type CliGenerateGithubWorkflowsDetectTurboTurboConfigPath = string;
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* CLI - Generate - GitHub - Workflows - Render Artifact Paths.
|
|
167
|
+
*
|
|
168
|
+
* @since 0.16.0
|
|
169
|
+
*/
|
|
170
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsTargets = CliGenerateGithubWorkflowsRenderArtifactPathsTargetEntry[];
|
|
171
|
+
|
|
172
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsTargetMetadataEntryArtifactPath = string;
|
|
173
|
+
|
|
174
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsTargetMetadataEntryArtifactPaths = CliGenerateGithubWorkflowsRenderArtifactPathsTargetMetadataEntryArtifactPath[];
|
|
175
|
+
|
|
176
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsTargetMetadataEntry = {
|
|
177
|
+
artifactPaths: CliGenerateGithubWorkflowsRenderArtifactPathsTargetMetadataEntryArtifactPaths;
|
|
178
|
+
};
|
|
179
|
+
|
|
180
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsTargetMetadata = Record<string, CliGenerateGithubWorkflowsRenderArtifactPathsTargetMetadataEntry>;
|
|
181
|
+
|
|
182
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsReturns = string;
|
|
183
|
+
|
|
184
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsSeen = Set<string>;
|
|
185
|
+
|
|
186
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsPaths = CliGenerateGithubWorkflowsRenderArtifactPathsPath[];
|
|
187
|
+
|
|
188
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsTargetEntryType = string;
|
|
189
|
+
|
|
190
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsTargetEntryWorkingDir = string;
|
|
191
|
+
|
|
192
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsTargetEntry = {
|
|
193
|
+
type: CliGenerateGithubWorkflowsRenderArtifactPathsTargetEntryType;
|
|
194
|
+
workingDir: CliGenerateGithubWorkflowsRenderArtifactPathsTargetEntryWorkingDir;
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsMetadata = CliGenerateGithubWorkflowsRenderArtifactPathsTargetMetadataEntry | undefined;
|
|
198
|
+
|
|
199
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsPath = string;
|
|
200
|
+
|
|
201
|
+
export type CliGenerateGithubWorkflowsRenderArtifactPathsLines = string[];
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* CLI - Generate - GitHub - Workflows - Resolve Workspace Name.
|
|
205
|
+
*
|
|
206
|
+
* @since 0.16.0
|
|
207
|
+
*/
|
|
208
|
+
export type CliGenerateGithubWorkflowsResolveWorkspaceNameWorkspacesEntry = {
|
|
209
|
+
name?: string;
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
export type CliGenerateGithubWorkflowsResolveWorkspaceNameWorkspaces = Record<string, CliGenerateGithubWorkflowsResolveWorkspaceNameWorkspacesEntry>;
|
|
213
|
+
|
|
214
|
+
export type CliGenerateGithubWorkflowsResolveWorkspaceNameReturns = string | undefined;
|
|
215
|
+
|
|
216
|
+
export type CliGenerateGithubWorkflowsResolveWorkspaceNamePath = string;
|
|
217
|
+
|
|
218
|
+
export type CliGenerateGithubWorkflowsResolveWorkspaceNameEntry = CliGenerateGithubWorkflowsResolveWorkspaceNameWorkspacesEntry | undefined;
|
|
219
|
+
|
|
131
220
|
/**
|
|
132
221
|
* CLI - Generate - GitHub - Workflows - Run.
|
|
133
222
|
*
|
|
@@ -282,6 +371,8 @@ export type CliGenerateGithubWorkflowsRunIndentedTriggerLines = string[];
|
|
|
282
371
|
|
|
283
372
|
export type CliGenerateGithubWorkflowsRunIndentedTriggerYaml = string;
|
|
284
373
|
|
|
374
|
+
export type CliGenerateGithubWorkflowsRunNeedsManuallyFallback = boolean;
|
|
375
|
+
|
|
285
376
|
export type CliGenerateGithubWorkflowsRunMergedRunName = string;
|
|
286
377
|
|
|
287
378
|
export type CliGenerateGithubWorkflowsRunMergedPublishCondition = string;
|
|
@@ -290,6 +381,82 @@ export type CliGenerateGithubWorkflowsRunMergedJobsCondition = string;
|
|
|
290
381
|
|
|
291
382
|
export type CliGenerateGithubWorkflowsRunJobsConditionLine = string;
|
|
292
383
|
|
|
384
|
+
export type CliGenerateGithubWorkflowsRunSupportsScopes = boolean;
|
|
385
|
+
|
|
386
|
+
export type CliGenerateGithubWorkflowsRunSupportsTargets = boolean;
|
|
387
|
+
|
|
388
|
+
export type CliGenerateGithubWorkflowsRunEntryScopes = import('../../../shared.d.ts').SharedNovaConfigWorkflowScopes;
|
|
389
|
+
|
|
390
|
+
export type CliGenerateGithubWorkflowsRunEntryTargets = import('../../../shared.d.ts').SharedNovaConfigWorkflowTargets;
|
|
391
|
+
|
|
392
|
+
export type CliGenerateGithubWorkflowsRunHasPublishValidationError = boolean;
|
|
393
|
+
|
|
394
|
+
export type CliGenerateGithubWorkflowsRunTargetsMetadata = import('../../../lib/workflow-templates.d.ts').LibWorkflowTemplatesTargets;
|
|
395
|
+
|
|
396
|
+
export type CliGenerateGithubWorkflowsRunTargetTupleSet = Set<string>;
|
|
397
|
+
|
|
398
|
+
export type CliGenerateGithubWorkflowsRunTargetType = string;
|
|
399
|
+
|
|
400
|
+
export type CliGenerateGithubWorkflowsRunTargetWorkingDir = string;
|
|
401
|
+
|
|
402
|
+
export type CliGenerateGithubWorkflowsRunTargetTupleKey = string;
|
|
403
|
+
|
|
404
|
+
export type CliGenerateGithubWorkflowsRunResolvedWorkspaceNames = string[];
|
|
405
|
+
|
|
406
|
+
export type CliGenerateGithubWorkflowsRunEntryScope = import('../../../shared.d.ts').SharedNovaConfigWorkflowScope;
|
|
407
|
+
|
|
408
|
+
export type CliGenerateGithubWorkflowsRunResolvedWorkspaceName = string;
|
|
409
|
+
|
|
410
|
+
export type CliGenerateGithubWorkflowsRunUseTurbo = boolean;
|
|
411
|
+
|
|
412
|
+
export type CliGenerateGithubWorkflowsRunCheckCommand = string;
|
|
413
|
+
|
|
414
|
+
export type CliGenerateGithubWorkflowsRunBuildCommand = string;
|
|
415
|
+
|
|
416
|
+
export type CliGenerateGithubWorkflowsRunArtifactPathsBlock = string;
|
|
417
|
+
|
|
418
|
+
export type CliGenerateGithubWorkflowsRunUploadArtifactStep = string;
|
|
419
|
+
|
|
420
|
+
export type CliGenerateGithubWorkflowsRunUploadArtifactStepLines = string[];
|
|
421
|
+
|
|
422
|
+
export type CliGenerateGithubWorkflowsRunResolvedTargetFragment = string;
|
|
423
|
+
|
|
424
|
+
export type CliGenerateGithubWorkflowsRunResolvedTargetFragments = CliGenerateGithubWorkflowsRunResolvedTargetFragment[];
|
|
425
|
+
|
|
426
|
+
export type CliGenerateGithubWorkflowsRunEntryTarget = import('../../../shared.d.ts').SharedNovaConfigWorkflowTarget;
|
|
427
|
+
|
|
428
|
+
export type CliGenerateGithubWorkflowsRunTargetFragmentPath = string;
|
|
429
|
+
|
|
430
|
+
export type CliGenerateGithubWorkflowsRunTargetFragmentExists = boolean;
|
|
431
|
+
|
|
432
|
+
export type CliGenerateGithubWorkflowsRunTargetFragmentRawContent = string;
|
|
433
|
+
|
|
434
|
+
export type CliGenerateGithubWorkflowsRunTargetId = string;
|
|
435
|
+
|
|
436
|
+
export type CliGenerateGithubWorkflowsRunTargetFragmentResolvedContent = string;
|
|
437
|
+
|
|
438
|
+
export type CliGenerateGithubWorkflowsRunTargetNeeds = import('../../../shared.d.ts').SharedNovaConfigWorkflowTargetNeeds;
|
|
439
|
+
|
|
440
|
+
export type CliGenerateGithubWorkflowsRunTargetNeedsJobIds = CliGenerateGithubWorkflowsRunTargetNeedsJobId[];
|
|
441
|
+
|
|
442
|
+
export type CliGenerateGithubWorkflowsRunTargetNeedWorkingDir = string;
|
|
443
|
+
|
|
444
|
+
export type CliGenerateGithubWorkflowsRunTargetNeedsJobId = string;
|
|
445
|
+
|
|
446
|
+
export type CliGenerateGithubWorkflowsRunTargetNeedsValue = string;
|
|
447
|
+
|
|
448
|
+
export type CliGenerateGithubWorkflowsRunTargetJobsConditionLine = string;
|
|
449
|
+
|
|
450
|
+
export type CliGenerateGithubWorkflowsRunTargetMetadata = import('../../../lib/workflow-templates.d.ts').LibWorkflowTemplatesTarget | undefined;
|
|
451
|
+
|
|
452
|
+
export type CliGenerateGithubWorkflowsRunMergedVariables = import('../../../lib/workflow-templates.d.ts').LibWorkflowTemplatesVariables;
|
|
453
|
+
|
|
454
|
+
export type CliGenerateGithubWorkflowsRunIndentedFragmentLines = string[];
|
|
455
|
+
|
|
456
|
+
export type CliGenerateGithubWorkflowsRunIndentedFragment = string;
|
|
457
|
+
|
|
458
|
+
export type CliGenerateGithubWorkflowsRunAppendedFragments = string;
|
|
459
|
+
|
|
293
460
|
export type CliGenerateGithubWorkflowsRunSubstituted = string;
|
|
294
461
|
|
|
295
462
|
export type CliGenerateGithubWorkflowsRunResolvedName = string;
|
|
@@ -310,6 +477,17 @@ export type CliGenerateGithubWorkflowsRunOrphanPath = string;
|
|
|
310
477
|
|
|
311
478
|
export type CliGenerateGithubWorkflowsRunSetupMessage = string;
|
|
312
479
|
|
|
480
|
+
/**
|
|
481
|
+
* CLI - Generate - GitHub - Workflows - Slugify Working Dir.
|
|
482
|
+
*
|
|
483
|
+
* @since 0.16.0
|
|
484
|
+
*/
|
|
485
|
+
export type CliGenerateGithubWorkflowsSlugifyWorkingDirInput = string;
|
|
486
|
+
|
|
487
|
+
export type CliGenerateGithubWorkflowsSlugifyWorkingDirReturns = string;
|
|
488
|
+
|
|
489
|
+
export type CliGenerateGithubWorkflowsSlugifyWorkingDirTrimmed = string;
|
|
490
|
+
|
|
313
491
|
/**
|
|
314
492
|
* CLI - Generate - GitHub - Workflows - Substitute Variables.
|
|
315
493
|
*
|