Compare commits

..

8 Commits

Author SHA1 Message Date
e2262bc02c docs: more explanation
All checks were successful
build / build (push) Successful in 2m3s
build / build (pull_request) Successful in 2m5s
build / trigger-build-image (pull_request) Has been skipped
build / trigger-build-image (push) Has been skipped
2025-07-08 04:34:14 +08:00
92e3919c46 docs: hint on match keywords style parsers 2025-07-08 04:34:14 +08:00
0b3f67bb0a fix: rebase error 2025-07-08 04:34:14 +08:00
bb07b0e695 docs: comments on copy-in-cwd & limit 2025-07-08 04:34:14 +08:00
bd5c83d3f0 fix: typo 2025-07-08 04:34:14 +08:00
16e1dad46e docs: full toml sample with full comments 2025-07-08 04:34:14 +08:00
306785ddb3 docs: full toml sample 2025-07-08 04:34:14 +08:00
b3581a4071
chore: change fallback conf name to health check
All checks were successful
build / build (push) Successful in 2m9s
build / trigger-build-image (push) Successful in 11s
2025-07-03 09:36:24 -04:00
3 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ def convert(
fallback_toml_path = repo_toml_path.parent / "conf.toml"
if not fallback_toml_path.exists():
fallback_toml_path.write_text(
'name = "invalid commit"\nmax-total-score = 0\n'
'name = "health check"\nmax-total-score = 0\n'
)
for task_toml_path in repo_toml_path.parent.glob("**/*.toml"):
if repo_toml_path == task_toml_path:

View File

@ -1,6 +1,6 @@
{
"name": "invalid commit",
"logPath": "/home/tt/.cache/joj3/invalid/joj3.log",
"name": "health check",
"logPath": "/home/tt/.cache/joj3/health/joj3.log",
"expireUnixTimestamp": 0,
"effectiveUnixTimestamp": 0,
"actorCsvPath": "/home/tt/.config/joj/students.csv",

View File

@ -1,2 +1,2 @@
name = "invalid commit"
name = "health check"
max-total-score = 0