* send X-GitHub-Api-Version when calling GitHub v3 API * TODO: invesitgate * read baseUrl from config.service.baseUri * add workflow to check for new GH api releases on schedule * format config/default.yml to match yaml.dump() format Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
20 lines
582 B
JavaScript
20 lines
582 B
JavaScript
import fs from 'fs/promises'
|
|
import got from 'got'
|
|
import yaml from 'js-yaml'
|
|
|
|
const resp = await got('https://api.github.com/versions').json()
|
|
const latestDate = resp.sort()[resp.length - 1]
|
|
|
|
const config = yaml.load(await fs.readFile('./config/default.yml', 'utf8'))
|
|
|
|
if (latestDate === config.public.services.github.restApiVersion) {
|
|
console.log("We're already using the latest version. No change needed.")
|
|
process.exit(0)
|
|
}
|
|
|
|
config.public.services.github.restApiVersion = latestDate
|
|
await fs.writeFile(
|
|
'./config/default.yml',
|
|
yaml.dump(config, { forceQuotes: true })
|
|
)
|