chore: 清理无用的 ci 代码

This commit is contained in:
winixt 2022-08-21 16:40:56 +08:00
parent 20c0fd1003
commit e9d2f1dfe2
5 changed files with 1 additions and 3181 deletions

View File

@ -1,21 +0,0 @@
name: Generate changelog
description: Uses conventional-changelog to generate the changelog from a tag to another
inputs:
from:
description: Old tag
to:
description: New tag
outputs:
changelog:
description: The new changelog, formatted as a JSON string
runs:
using: node12
main: main.js
branding:
icon: clock
color: yellow

View File

@ -1,14 +0,0 @@
const cp = require("child_process");
cp.execSync(`cd ${__dirname}; npm ci`);
const path = require("path");
const core = require("@actions/core");
const lernaChangelog = path.resolve(__dirname, "node_modules/.bin/conventional-changelog");
const exec = cmd => cp.execSync(cmd).toString().trim();
const changelog = exec(`node ${lernaChangelog} -p cmyr-config -r 2`);
console.log(changelog);
core.setOutput("changelog", JSON.stringify(changelog.split('\n').slice(4).join('\n')));

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +0,0 @@
{
"private": true,
"name": "update-changelog",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0",
"conventional-changelog-cli": "^2.1.0",
"conventional-changelog-cmyr-config": "^1.2.3",
"cz-conventional-changelog": "^3.3.0"
}
}

View File

@ -69,56 +69,5 @@
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"changelog": {
"bugsUrl": "https://github.com/WeBankFinTech/fes.js/issues/",
"authorName": true,
"authorEmail": false,
"settings": {
"feat": {
"title": ":rocket: New Feature",
"enable": true
},
"fix": {
"title": ":bug: Bug Fix"
},
"perf": {
"title": ":running_woman: Performance"
},
"revert": {
"title": ":leftwards_arrow_with_hook: Revert"
},
"refactor": {
"title": "♻ 代码重构"
},
"docs": {
"title": ":memo: Documentation",
"enable": true
},
"style": {
"title": ":eyeglasses: Spec Compliance",
"enable": true
},
"test": {
"title": "✅ 测试",
"enable": false
},
"build": {
"title": "👷‍ 构建",
"enable": false
},
"ci": {
"title": "🔧 CI 配置",
"enable": false
},
"chore": {
"title": "🎫 其他更新",
"enable": false
},
"release": {
"title": "发布",
"enable": false
}
}
}
}
}