diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1457138..071b4073 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,4 +22,4 @@ jobs: - run: npx changelogithub env: - GITHUB_TOKEN: ${{secrets.V3_ADMIN_VITE}} + GITHUB_TOKEN: ${{ secrets.V3_ADMIN_VITE }} diff --git a/changelogithub.config.json b/changelogithub.config.json new file mode 100644 index 00000000..fa77b888 --- /dev/null +++ b/changelogithub.config.json @@ -0,0 +1,21 @@ +/** + * 仓库:https://github.com/antfu/changelogithub + * 注意:业务系统可以直接忽略和删除该文件 + */ + +{ + "types": { + "feat": { "title": "Feat" }, + "fix": { "title": "Fix" }, + "perf": { "title": "Perf" }, + "style": { "title": "Style" }, + "refactor": { "title": "Refactor" }, + "revert": { "title": "Revert" }, + "test": { "title": "Test" }, + "docs": { "title": "Docs" }, + "chore": { "title": "Chore" }, + "workflow": { "title": "Workflow" }, + "ci": { "title": "CI" }, + "types": { "title": "Types" } + } +}