| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import _ from 'lodash';
- import { Task, TaskRunner } from './task';
- import GithubClient from '../utils/githubClient';
- interface ChangelogOptions {
- milestone: string;
- }
- const changelogTaskRunner: TaskRunner<ChangelogOptions> = async ({ milestone }) => {
- const githubClient = new GithubClient();
- const client = githubClient.client;
- if (!/^\d+$/.test(milestone)) {
- console.log('Use milestone number not title, find number in milestone url');
- return;
- }
- const res = await client.get('/issues', {
- params: {
- state: 'closed',
- per_page: 100,
- labels: 'add to changelog',
- milestone: milestone,
- },
- });
- const issues = res.data;
- const bugs = _.sortBy(
- issues.filter(item => {
- if (item.title.match(/fix|fixes/i)) {
- return true;
- }
- if (item.labels.find(label => label.name === 'type/bug')) {
- return true;
- }
- return false;
- }),
- 'title'
- );
- const notBugs = _.sortBy(issues.filter(item => !bugs.find(bug => bug === item)), 'title');
- let markdown = '';
- if (notBugs.length > 0) {
- markdown = '### Features / Enhancements\n';
- }
- for (const item of notBugs) {
- markdown += getMarkdownLineForIssue(item);
- }
- if (bugs.length > 0) {
- markdown += '\n### Bug Fixes\n';
- }
- for (const item of bugs) {
- markdown += getMarkdownLineForIssue(item);
- }
- console.log(markdown);
- };
- function getMarkdownLineForIssue(item: any) {
- const githubGrafanaUrl = 'https://github.com/grafana/grafana';
- let markdown = '';
- const title = item.title.replace(/^([^:]*)/, (match, g1) => {
- return `**${g1}**`;
- });
- markdown += '* ' + title + '.';
- markdown += ` [#${item.number}](${githubGrafanaUrl}/pull/${item.number})`;
- markdown += `, [@${item.user.login}](${item.user.html_url})`;
- markdown += '\n';
- return markdown;
- }
- export const changelogTask = new Task<ChangelogOptions>();
- changelogTask.setName('Changelog generator task');
- changelogTask.setRunner(changelogTaskRunner);
|