@tskmgr/common 0.0.7 → 0.0.8
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/package.json +1 -1
- package/src/lib/runs/dto/create-run-request.dto.d.ts +3 -0
- package/src/lib/runs/dto/create-run-request.dto.js.map +1 -1
- package/src/lib/runs/run-status.d.ts +0 -1
- package/src/lib/runs/run-status.js +0 -1
- package/src/lib/runs/run-status.js.map +1 -1
- package/src/lib/runs/run.d.ts +2 -0
package/package.json
CHANGED
|
@@ -7,4 +7,7 @@ export declare class CreateRunRequestDto {
|
|
|
7
7
|
readonly type: string;
|
|
8
8
|
readonly prioritization?: TaskPriority[];
|
|
9
9
|
readonly runners?: number;
|
|
10
|
+
/** runnerAffinity will reschedule tasks from one pull request on previous runner. Default: true */
|
|
11
|
+
readonly runnerAffinity?: boolean;
|
|
12
|
+
readonly failFast?: boolean;
|
|
10
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-run-request.dto.js","sourceRoot":"","sources":["../../../../../../../libs/common/src/lib/runs/dto/create-run-request.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;
|
|
1
|
+
{"version":3,"file":"create-run-request.dto.js","sourceRoot":"","sources":["../../../../../../../libs/common/src/lib/runs/dto/create-run-request.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;CAW/B;AAXD,kDAWC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run-status.js","sourceRoot":"","sources":["../../../../../../libs/common/src/lib/runs/run-status.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"run-status.js","sourceRoot":"","sources":["../../../../../../libs/common/src/lib/runs/run-status.ts"],"names":[],"mappings":";;;AAAA,IAAY,SAMX;AAND,WAAY,SAAS;IACnB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,8BAAiB,CAAA;IACjB,oCAAuB,CAAA;AACzB,CAAC,EANW,SAAS,GAAT,iBAAS,KAAT,iBAAS,QAMpB"}
|
package/src/lib/runs/run.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface Run {
|
|
|
7
7
|
url: string;
|
|
8
8
|
type: string;
|
|
9
9
|
status: string;
|
|
10
|
+
closed: boolean;
|
|
10
11
|
createdAt: Date;
|
|
11
12
|
updatedAt: Date;
|
|
12
13
|
endedAt: Date;
|
|
@@ -14,4 +15,5 @@ export interface Run {
|
|
|
14
15
|
prioritization: TaskPriority[];
|
|
15
16
|
leaderId: string;
|
|
16
17
|
runners: number;
|
|
18
|
+
runnerAffinity: boolean;
|
|
17
19
|
}
|