You've already forked helm-gitea
The following pull request removes the `gitea` directory. With regard to maintaining act_runners in a separate git repository or helm chart, this additional directory becomes redundant.
25 lines
615 B
YAML
25 lines
615 B
YAML
suite: config template | actions config
|
|
release:
|
|
name: gitea-unittests
|
|
namespace: testing
|
|
templates:
|
|
- templates/config.yaml
|
|
tests:
|
|
- it: "actions are enabled by default (based on vanilla Gitea behavior)"
|
|
template: templates/config.yaml
|
|
asserts:
|
|
- documentIndex: 0
|
|
notExists:
|
|
path: stringData.actions
|
|
|
|
- it: "actions can be disabled via inline config"
|
|
template: templates/config.yaml
|
|
set:
|
|
gitea.config.actions.ENABLED: false
|
|
asserts:
|
|
- documentIndex: 0
|
|
equal:
|
|
path: stringData.actions
|
|
value: |-
|
|
ENABLED=false
|