summaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
Diffstat (limited to 'model')
-rw-r--r--model/job/jobs.ts2
-rw-r--r--model/pipeline/builder.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/model/job/jobs.ts b/model/job/jobs.ts
index 4ed5858..dc23070 100644
--- a/model/job/jobs.ts
+++ b/model/job/jobs.ts
@@ -7,7 +7,7 @@ export interface FetchCodeJobProps extends JobArgT {
}
export interface FetchCodeJob {
- readonly type: 'fetch_code.js';
+ readonly type: 'fetch_code';
readonly arguments: FetchCodeJobProps;
}
diff --git a/model/pipeline/builder.ts b/model/pipeline/builder.ts
index c30867c..926a97f 100644
--- a/model/pipeline/builder.ts
+++ b/model/pipeline/builder.ts
@@ -30,7 +30,7 @@ export class DefaultGitHookPipelineBuilder extends BasePipelineBuilder {
this.addStage({
parallelJobs: [
<FetchCodeJob>{
- type: 'fetch_code.js',
+ type: 'fetch_code',
arguments: {
remoteUrl,
checkout: rev,