telegram-tt/dev/createStatoscopeComment.js

14 lines
432 B
JavaScript
Raw Normal View History

/* eslint-env node */
const fs = require('fs');
const createPRComment = require('./createPRComment');
const template = require('../.github/workflows/statoscope-comment.js');
module.exports = async ({ github, context, core }) => {
const data = JSON.parse(fs.readFileSync('result.json', 'utf8'));
data.prNumber = context.issue.number;
const body = template(data);
await createPRComment({ github, context, core, body });
};