mirror of https://github.com/go-gitea/gitea
add disable workflow feature (#26413)
As title, that's simmilar with github. ![image](https://github.com/go-gitea/gitea/assets/25342410/9e8b2444-63e0-4e87-80da-730c1e4d09d6) ![image](https://github.com/go-gitea/gitea/assets/25342410/6c3a3345-3ba7-48c9-9acd-3e621632491b) --------- Signed-off-by: a1012112796 <1012112796@qq.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Jason Song <i@wolfogre.com>pull/26493/head^2
parent
253737eb36
commit
19872063a3
@ -0,0 +1,30 @@ |
||||
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package repo |
||||
|
||||
import ( |
||||
"testing" |
||||
|
||||
"github.com/stretchr/testify/assert" |
||||
) |
||||
|
||||
func TestActionsConfig(t *testing.T) { |
||||
cfg := &ActionsConfig{} |
||||
cfg.DisableWorkflow("test1.yaml") |
||||
assert.EqualValues(t, []string{"test1.yaml"}, cfg.DisabledWorkflows) |
||||
|
||||
cfg.DisableWorkflow("test1.yaml") |
||||
assert.EqualValues(t, []string{"test1.yaml"}, cfg.DisabledWorkflows) |
||||
|
||||
cfg.EnableWorkflow("test1.yaml") |
||||
assert.EqualValues(t, []string{}, cfg.DisabledWorkflows) |
||||
|
||||
cfg.EnableWorkflow("test1.yaml") |
||||
assert.EqualValues(t, []string{}, cfg.DisabledWorkflows) |
||||
|
||||
cfg.DisableWorkflow("test1.yaml") |
||||
cfg.DisableWorkflow("test2.yaml") |
||||
cfg.DisableWorkflow("test3.yaml") |
||||
assert.EqualValues(t, "test1.yaml,test2.yaml,test3.yaml", cfg.ToString()) |
||||
} |
Loading…
Reference in new issue