Compare commits

...

2 Commits

Author SHA1 Message Date
29fc78e400
docs: remove personal info
All checks were successful
build / build (pull_request) Successful in 2m41s
build / build (push) Successful in 2m40s
2025-03-01 13:14:24 -05:00
6dc5b9cb6f
chore: remove unused 2025-03-01 13:12:40 -05:00
2 changed files with 4 additions and 3 deletions

View File

@ -25,7 +25,7 @@
- the intended immutable files should be placed at a sub-directory named `immutable_files` at same position as the `repo.toml` file
```shell
[nuvole0217@Nuvole test]$ tree .
$ tree .
.
|- immutable_files
| |-- push.yaml
@ -34,6 +34,7 @@
```
- sample command on the server
```shell
joj3-config-generator convert /home/tt/.config/joj
```

View File

@ -3,7 +3,7 @@ from typing import List
from joj3_config_generator.models import joj1, repo, result, task
from joj3_config_generator.processers.joj1 import get_joj1_run_stage
from joj3_config_generator.processers.repo import ( # get_teapotcheck_config,
from joj3_config_generator.processers.repo import (
get_healthcheck_config,
get_teapot_stage,
)
@ -67,5 +67,5 @@ def convert_joj1(joj1_conf: joj1.Config) -> task.Config:
name=(""),
),
release=task.Release(deadline=None, begin_time=None),
stages=[],
stages=stages,
)