Compare commits

..

7 Commits

Author SHA1 Message Date
8b5907f86a
docs: more explanation
All checks were successful
build / build (pull_request) Successful in 1m57s
build / build (push) Successful in 2m1s
build / trigger-build-image (pull_request) Has been skipped
build / trigger-build-image (push) Has been skipped
2025-07-03 09:20:14 -04:00
7e896b7531
docs: hint on match keywords style parsers 2025-07-03 08:59:56 -04:00
17143d9d65
fix: rebase error 2025-07-03 08:59:56 -04:00
a748d52054
docs: comments on copy-in-cwd & limit 2025-07-03 08:59:56 -04:00
fc5f905bf5
fix: typo 2025-07-03 08:59:56 -04:00
c12b1e9b29
docs: full toml sample with full comments 2025-07-03 08:59:56 -04:00
fb8fec6427
docs: full toml sample 2025-07-03 08:59:54 -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" fallback_toml_path = repo_toml_path.parent / "conf.toml"
if not fallback_toml_path.exists(): if not fallback_toml_path.exists():
fallback_toml_path.write_text( fallback_toml_path.write_text(
'name = "health check"\nmax-total-score = 0\n' 'name = "invalid commit"\nmax-total-score = 0\n'
) )
for task_toml_path in repo_toml_path.parent.glob("**/*.toml"): for task_toml_path in repo_toml_path.parent.glob("**/*.toml"):
if repo_toml_path == task_toml_path: if repo_toml_path == task_toml_path:

View File

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

View File

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