mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-08-11 17:50:58 +00:00
skip unsupported platforms
Signed-off-by: Casey Lee <cplee@nektos.com>
This commit is contained in:
parent
b8589c4e9b
commit
12ac03a755
6 changed files with 23 additions and 14 deletions
|
@ -62,8 +62,8 @@ func newRunCommand(ctx context.Context, input *Input) func(*cobra.Command, []str
|
|||
var eventName string
|
||||
if len(args) > 0 {
|
||||
eventName = args[0]
|
||||
} else if events := planner.GetEvents(); len(events) == 1 {
|
||||
// set default event type if we only have a single workflow in the file.
|
||||
} else if events := planner.GetEvents(); len(events) > 1 {
|
||||
// set default event type to first event
|
||||
// this way user dont have to specify the event.
|
||||
log.Debugf("Using detected workflow event: %s", events[0])
|
||||
eventName = events[0]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue