Skip to content

Commit 1c2f4ab

Browse files
Itai GendlerItai Gendler
authored andcommitted
Update workflow resource default fields
1 parent 69355ba commit 1c2f4ab

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

codefresh.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# this pipeline should not be run on version tag releases (it may cause a non correct sha to override version tagged image in dockerhub)
12
version: "1.0"
23

34
steps:

lib/logic/entities/Workflow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class Workflow extends Entity {
55
super();
66
this.entityType = 'workflow';
77
this.info = data;
8-
this.defaultColumns = ['id', 'pipeline', 'trigger', 'status', 'created', 'totalTime', 'finished', 'repository', 'branch'];
8+
this.defaultColumns = ['id', 'pipeline', 'status', 'created', 'finished', 'totalTime', 'trigger', 'repository', 'branch'];
99
this.wideColumns = this.defaultColumns.concat([]);
1010
}
1111

0 commit comments

Comments
 (0)