Skip to content

Commit e11713b

Browse files
committed
add beta support warning message for worker pools
1 parent 0842828 commit e11713b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,10 @@ export async function run(): Promise<void> {
211211
deployCmd.push('--labels', joinKVStringForGCloud(compiledLabels));
212212
}
213213
} else if (workerPool) {
214+
logWarning(
215+
`Support for Cloud Run worker pools in this GitHub Action is in beta and is ` +
216+
`not covered by the semver backwards compatibility guarantee.`,
217+
);
214218
deployCmd = ['run', 'worker-pools', 'deploy', workerPool];
215219

216220
if (image) {

0 commit comments

Comments
 (0)