Compare commits
No commits in common. "main" and "20240629_202132" have entirely different histories.
main
...
20240629_2
@ -32,3 +32,13 @@ 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>Sheffield Arena (Tram)</Name>
|
<Name>St Andrews (Bus)</Name>
|
||||||
<SixteenCharacterName>Sheffield Arena</SixteenCharacterName>
|
<SixteenCharacterName>St Andrews</SixteenCharacterName>
|
||||||
<Longitude>-1.420300</Longitude>
|
<Longitude>-2.796074</Longitude>
|
||||||
<Latitude>53.398331</Latitude>
|
<Latitude>56.340409</Latitude>
|
||||||
</Station>
|
</Station>
|
||||||
|
|
||||||
<Station>
|
<Station>
|
||||||
|
2215
pis/gw.yaml
2215
pis/gw.yaml
File diff suppressed because it is too large
Load Diff
@ -39,7 +39,6 @@ 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`;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -50,9 +49,8 @@ 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('auto-dgp2')) {
|
if (file.startsWith('dg_parser')) {
|
||||||
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