Compare commits

...

11 Commits

Author SHA1 Message Date
17e0a70de5 Update merge script to handle files from dgp2
All checks were successful
Generate Release / validate_and_release (push) Successful in 9s
2024-11-02 21:14:18 +00:00
9a2d739189 Fix Devonport - was entered as DVP, should have been DPT
Some checks are pending
Generate Release / validate_and_release (push) Waiting to run
2024-11-02 19:32:22 +00:00
3c752caeb9 Closes:
All checks were successful
Generate Release / validate_and_release (push) Successful in 11s
- #20
  - #21
 - #22
 - #23
 - #26
 - #27
 - #29
2024-11-02 19:29:45 +00:00
a3f68176b7 Closes #28
All checks were successful
Generate Release / validate_and_release (push) Successful in 18s
2024-11-02 19:25:31 +00:00
81ea75c31d Add pis/dgp-manual-yet-again.yaml (#19)
All checks were successful
Generate Release / validate_and_release (push) Successful in 11s
Co-authored-by: owlbot <owlbot@owlboard.info>
Reviewed-on: #19
2024-10-31 23:36:07 +00:00
94c31a34f8 Delete pis/dg-manual-again.yaml
All checks were successful
Generate Release / validate_and_release (push) Successful in 10s
2024-10-30 15:33:55 +00:00
ba7dc57b46 manual-additions-from-dgp (#18)
All checks were successful
Generate Release / validate_and_release (push) Successful in 12s
Co-authored-by: owlbot <owlbot@owlboard.info>
Reviewed-on: #18
2024-10-30 15:30:40 +00:00
d4f1cd6c9b auto-manual-addition (#17)
All checks were successful
Generate Release / validate_and_release (push) Successful in 10s
Co-authored-by: owlbot <owlbot@owlboard.info>
Reviewed-on: #17
2024-10-25 21:50:23 +01:00
b4d992414e auto-fixing (#16)
All checks were successful
Generate Release / validate_and_release (push) Successful in 12s
Co-authored-by: owlbot <owlbot@owlboard.info>
Reviewed-on: #16
2024-10-24 21:10:38 +01:00
0c159e121b Adjust merge script to add "gw" as TOC
All checks were successful
Generate Release / validate_and_release (push) Successful in 16s
2024-10-24 20:55:10 +01:00
93726137aa auto-20240722-150645 (#14)
All checks were successful
Generate Release / validate_and_release (push) Successful in 15s
Co-authored-by: owlbot <owlbot@owlboard.info>
Reviewed-on: #14
2024-07-24 13:06:21 +01:00
2 changed files with 1914 additions and 63 deletions

File diff suppressed because it is too large Load Diff

View File

@ -39,6 +39,7 @@ function sortAndMergeYAMLFiles() {
if (item.stops.length > 0) {
outputString += ` - code: "${item.code}"\n`;
outputString += ` stops: [${item.stops.map(stop => `${stop}`).join(',')}]\n`;
outputString += ` toc: "gw"\n`;
}
});
@ -49,8 +50,9 @@ function sortAndMergeYAMLFiles() {
console.error("Error writing gw.pis", err)
}
// Remove any files created by dgp2
files.forEach(file => {
if (file.startsWith('dg_parser')) {
if (file.startsWith('auto-dgp2')) {
fs.unlinkSync(directoryPath + file);
console.log(`Deleted file: ${file}`);
}