mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
chore: 清理无用的 ci 代码
This commit is contained in:
parent
20c0fd1003
commit
e9d2f1dfe2
21
.github/actions/generate-changelog/action.yml
vendored
21
.github/actions/generate-changelog/action.yml
vendored
@ -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
|
14
.github/actions/generate-changelog/main.js
vendored
14
.github/actions/generate-changelog/main.js
vendored
@ -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')));
|
3082
.github/actions/generate-changelog/package-lock.json
generated
vendored
3082
.github/actions/generate-changelog/package-lock.json
generated
vendored
File diff suppressed because it is too large
Load Diff
12
.github/actions/generate-changelog/package.json
vendored
12
.github/actions/generate-changelog/package.json
vendored
@ -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"
|
||||
}
|
||||
}
|
53
package.json
53
package.json
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user