Compare commits
23 Commits
20240629_2
...
main
Author | SHA1 | Date | |
---|---|---|---|
17e0a70de5 | |||
9a2d739189 | |||
3c752caeb9 | |||
a3f68176b7 | |||
81ea75c31d | |||
94c31a34f8 | |||
ba7dc57b46 | |||
d4f1cd6c9b | |||
b4d992414e | |||
0c159e121b | |||
93726137aa | |||
71a5647146 | |||
|
0562c3bcb3 | ||
96aa5ef9c0 | |||
77125dfda0 | |||
8e14964e43 | |||
3f6b728ebc | |||
ed619461e5 | |||
e26c2ed7a0 | |||
|
ea4ec2e34f | ||
6ba95bb5b4 | |||
c7e21c80fe | |||
caa07f840c |
@ -32,13 +32,3 @@ jobs:
|
|||||||
commit_user_name: owlbot
|
commit_user_name: owlbot
|
||||||
commit_user_email: owlbot@owlboard.info
|
commit_user_email: owlbot@owlboard.info
|
||||||
commit_author: owlbot <owlbot@owlboard.info>
|
commit_author: owlbot <owlbot@owlboard.info>
|
||||||
|
|
||||||
- name: Create PR
|
|
||||||
uses: https://github.com/peter-evans/create-pull-request@v6
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.OWLBOT_KEY }}
|
|
||||||
committer: OwlBot <owlbot@owlboard.info>
|
|
||||||
signoff: true
|
|
||||||
title: Merge Changes
|
|
||||||
reviewers: fred.boniface
|
|
||||||
branch: main
|
|
@ -272,10 +272,10 @@
|
|||||||
|
|
||||||
<Station>
|
<Station>
|
||||||
<CrsCode>SAI</CrsCode>
|
<CrsCode>SAI</CrsCode>
|
||||||
<Name>St Andrews (Bus)</Name>
|
<Name>Sheffield Arena (Tram)</Name>
|
||||||
<SixteenCharacterName>St Andrews</SixteenCharacterName>
|
<SixteenCharacterName>Sheffield Arena</SixteenCharacterName>
|
||||||
<Longitude>-2.796074</Longitude>
|
<Longitude>-1.420300</Longitude>
|
||||||
<Latitude>56.340409</Latitude>
|
<Latitude>53.398331</Latitude>
|
||||||
</Station>
|
</Station>
|
||||||
|
|
||||||
<Station>
|
<Station>
|
||||||
|
2215
pis/gw.yaml
2215
pis/gw.yaml
File diff suppressed because it is too large
Load Diff
@ -39,6 +39,7 @@ function sortAndMergeYAMLFiles() {
|
|||||||
if (item.stops.length > 0) {
|
if (item.stops.length > 0) {
|
||||||
outputString += ` - code: "${item.code}"\n`;
|
outputString += ` - code: "${item.code}"\n`;
|
||||||
outputString += ` stops: [${item.stops.map(stop => `${stop}`).join(',')}]\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)
|
console.error("Error writing gw.pis", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove any files created by dgp2
|
||||||
files.forEach(file => {
|
files.forEach(file => {
|
||||||
if (file.startsWith('dg_parser')) {
|
if (file.startsWith('auto-dgp2')) {
|
||||||
fs.unlinkSync(directoryPath + file);
|
fs.unlinkSync(directoryPath + file);
|
||||||
console.log(`Deleted file: ${file}`);
|
console.log(`Deleted file: ${file}`);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user