We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9299b3 commit 90644adCopy full SHA for 90644ad
internal/actions/test.go
@@ -43,9 +43,8 @@ func Test(ctx context.Context) error {
43
return err
44
}
45
46
- // This will only come in via workflow dispatch, we do accept 'all' as a special case
47
var testedTargets []string
48
- if providedTargetName := environment.SpecifiedTarget(); providedTargetName != "" && os.Getenv("GITHUB_EVENT_NAME") == "workflow_dispatch" {
+ if providedTargetName := environment.SpecifiedTarget(); providedTargetName != "" {
49
testedTargets = append(testedTargets, providedTargetName)
50
51
0 commit comments