Files
CanisMinor 19da5e419d 🔧 chore: Add changelog workflow (#4662)
* 🔧 chore: Add changelog workflow

* 🔧 chore: Update schema

* 🔧 chore: Update schema

* 🔧 chore: Update changelog workflow

* 🔧 chore: Update changelog json

* 🔧 chore: Update changelog

* 📝 docs: Update Changelog
2024-11-26 14:48:06 +08:00

11 lines
210 B
TypeScript

import { consola } from 'consola';
import { buildStaticChangelog } from './buildStaticChangelog';
const run = () => {
consola.start('Building static changelog...');
buildStaticChangelog.run();
};
run();