-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from mkusaka/update-20241102T000312
update 20241102T000312
- Loading branch information
Showing
5 changed files
with
246 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export type pipeline = { | ||
created_at?: string; | ||
id?: string; | ||
number?: number; | ||
state?: "created" | "errored" | "setup-pending" | "setup" | "pending"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export type pipelineRequest = { | ||
checkout?: { | ||
/** | ||
* The branch that should be used to check out code on a checkout step. | ||
* Note that branch and tag are mutually exclusive. | ||
* To trigger a pipeline for a PR by number use pull/<number>/head for the PR ref or pull/<number>/merge for the merge ref (GitHub only) | ||
* | ||
*/ | ||
branch?: string; | ||
/** | ||
* The tag that should be used to check out code on a checkout step. | ||
* The commit that this tag points to is used for the pipeline. Note that branch and tag are mutually exclusive. | ||
* | ||
*/ | ||
tag?: string; | ||
}; | ||
config?: { | ||
/** | ||
* The branch that should be used to fetch the config file. | ||
* Note that branch and tag are mutually exclusive. | ||
* To trigger a pipeline for a PR by number use pull/<number>/head for the PR ref or pull/<number>/merge for the merge ref (GitHub only) | ||
* | ||
*/ | ||
branch?: string; | ||
/** | ||
* The tag that should be used to fetch the config file. | ||
* The commit that this tag points to is used for the pipeline. | ||
* Note that branch and tag are mutually exclusive. | ||
* | ||
*/ | ||
tag?: string; | ||
}; | ||
/** | ||
* The unique id for the pipeline definition. This can be found in the page Project Settings > Pipelines. | ||
*/ | ||
definition_id?: string; | ||
/** | ||
* An object containing pipeline parameters and their values. | ||
* Pipeline parameters have the following size limits: 100 max entries, 128 maximum key length, 512 maximum value length. | ||
* | ||
*/ | ||
parameters?: any; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters