fix(ci): Fix another spot where ` needs escaping.

This commit is contained in:
Peter Johanson 2023-01-05 16:45:00 +00:00 committed by Pete Johanson
parent 5b9b507de3
commit b7b563a4c3

View file

@ -376,7 +376,7 @@ jobs:
},
{ onboard: [], interconnects: {} });
return JSON.stringify(grouped).replace(/\\/g,"\\\\");
return JSON.stringify(grouped).replace(/\\/g,"\\\\").replace(/`/g,"\\`");
result-encoding: string
get-changed-files:
if: ${{ github.event_name != 'schedule' }}