22 lines
1.0 KiB
TOML
22 lines
1.0 KiB
TOML
max-size = 10 # max size of the repository in MB
|
|
files.required = ["README.md", "Changelog.md"] # required files name, case insensitive
|
|
sandbox-token = "" # sandbox token
|
|
health-check-score = 0 # score for health check stage
|
|
immutable-path = "immutable" # path for immutable files, relative to the path of repo.toml
|
|
|
|
issue.label.name = "Kind/Testing" # label for issues
|
|
issue.label.color = "#795548" # color for the label
|
|
issue.label.exclusive = false # whether the label is exclusive
|
|
issue.show-submitter = true # whether to show submitter in the issue title
|
|
|
|
|
|
# fields below can be overridden by task.toml
|
|
max-total-score = 100 # maximum total score for the task
|
|
# submission count limit groups
|
|
# explanation of the following config:
|
|
# groups with name "joj" can submit up to 1000 times in last 24 hours
|
|
# groups with name "run" can submit up to 100 times in last 1 hour
|
|
groups.name = ["joj", "run"] # names of the groups
|
|
groups.max-count = [1000, 100] # maximum submission count for each group
|
|
groups.time-period-hour = [24, 1] # time period in hour for each group
|