Skip to content

Commit

Permalink
chore(graphql): bump schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkness4 committed Jan 11, 2024
1 parent bdbdf98 commit 01c0c3f
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/graphql/client/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -793,13 +793,15 @@ export type StepFor = {
*/
export type StepRun = {
/**
* Command specifies a shell script.
* Command specifies a shell script or CMD.
*
* If container is used, command automatically overwrite the ENTRYPOINT and CMD. If you want to execute the entrypoint, it MUST be re-specified.
* If container is used, `command` and `shell` automatically overwrite the ENTRYPOINT and CMD.
*
* You can install and use skopeo to inspect an image without having to pull it.
* If you want to execute the default ENTRYPOINT and CMD, set the `command` empty.
*
* Example: skopeo inspect --config docker://curlimages/curl:latest will gives "/entrypoint.sh" as ENTRYPOINT and "curl" as CMD. Therefore command="/entrypoint.sh curl".
* If you want to execute the default ENTRYPOINT with a custom CMD, set the `command` to your args and set the `shell` to `ENTRYPOINT`.
*
* Right now, ENTRYPOINT cannot be overriden for security reasons.
*
* Go name: "Command".
*/
Expand Down Expand Up @@ -895,7 +897,9 @@ export type StepRun = {
/**
* Shell to use.
*
* Accepted: /bin/bash, /bin/ash, /bin/sh
* Use "ENTRYPOINT" to use the default ENTRYPOINT.
*
* Accepted: /bin/bash, /bin/ash, /bin/sh, ENTRYPOINT
* Default: /bin/sh
*
* Go name: "Shell".
Expand Down

0 comments on commit 01c0c3f

Please sign in to comment.