grim/convey

Add task convey/noop. Fixed #174

2018-02-17, Gary Kramlich
82fa825579d5
Parents 6d9ae7a89eaf
Children 86e00b10bb80
Add task convey/noop. Fixed #174
--- a/ChangeLog Fri Feb 16 23:30:52 2018 -0600
+++ b/ChangeLog Sat Feb 17 00:14:44 2018 -0600
@@ -16,6 +16,7 @@
a VCS environment variable. Fixed #164
* Added a new aws/ecr-login task for logging into AWS ECR. Fixed #161
* Added kubectl/apply, kubectl/create, and kubectl/delete tasks. Fixed #170
+ * Added a new convey/noop task that does nothing. Fixed #174
0.13.1: 20180114
* Write warning, error, and fatal log messages to stderr. Fixed #156
--- a/intrinsic/intrinsic.go Fri Feb 16 23:30:52 2018 -0600
+++ b/intrinsic/intrinsic.go Sat Feb 17 00:14:44 2018 -0600
@@ -26,5 +26,6 @@
Tasks = map[string]tasks.Task{
"clean": &Clean{},
"extend": &Extend{},
+ "noop": &Noop{},
}
)