Signed-off-by: Casey Lee <cplee@nektos.com>
This commit is contained in:
Casey Lee
2020-02-10 16:53:14 -08:00
parent ac8258db4b
commit 835b36cb63
8 changed files with 50 additions and 20 deletions

View File

@@ -61,13 +61,11 @@ func newRunCommand(ctx context.Context, input *Input) func(*cobra.Command, []str
var eventName string
if len(args) > 0 {
eventName = args[0]
} else {
} else if events := planner.GetEvents(); len(events) == 1 {
// set default event type if we only have a single workflow in the file.
// this way user dont have to specify the event.
if events := planner.GetEvents(); len(events) == 1 {
log.Debugf("Using detected workflow event: %s", events[0])
eventName = events[0]
}
log.Debugf("Using detected workflow event: %s", events[0])
eventName = events[0]
}
// build the plan for this run