We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97e9ac2 commit 79adac0Copy full SHA for 79adac0
‎lib/router.js
@@ -69,7 +69,7 @@ module.exports = app => {
69
app.log.info(`[${fullName}] Checking ${app.CONFIG_FILENAME}`)
70
getJSON(`https://${GITHUB_CREDENTIALS}api.github.com/repos/${fullName}/contents/.github/${app.CONFIG_FILENAME}`)
71
.then(json => Buffer.from(json.content, 'base64').toString())
72
- .then(yml => yaml.safeLoad(yml))
+ .then(yml => yaml.load(yml))
73
.then((config) => {
74
const { error, value } = schema.validate(config)
75
if (error) throw error
0 commit comments