From 1d7c6d16a4489c6baafd787bd6236f4090671914 Mon Sep 17 00:00:00 2001 From: bac-joker Date: Sat, 19 Sep 2020 16:12:11 +0800 Subject: [PATCH] feat(automation release): standard commit msg and release workflow --- .github/workflows/release.yml | 53 +++++++++++++++++++++++++++++++++++ .gitignore | 4 ++- commitlint.config.js | 1 + lerna.json | 28 ++++++++++++++++-- package.json | 24 +++++++++++++++- 5 files changed, 106 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/release.yml create mode 100644 commitlint.config.js diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..95416855 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,53 @@ +name: Release + +on: + push: + tags: ["v*"] + +jobs: + github_release: + name: Trigger GitHub release + runs-on: ubuntu-latest + steps: + - name: Checkout the new tag + uses: actions/checkout@v1.0.0 + + - name: Get tag info + id: tags + uses: babel/actions/get-release-tags@v2 + + - name: Generate the changelog + id: changelog + uses: babel/actions/generate-lerna-changelog@v2 + with: + from: ${{ steps.tags.outputs.old }} + to: ${{ steps.tags.outputs.new }} + env: + GITHUB_AUTH: ${{ secrets.ACCESS_TOKEN }} + + - name: Create a draft GitHub release + uses: babel/actions/publish-github-release@v2 + with: + tag: ${{ steps.tags.outputs.new }} + changelog: ${{ steps.changelog.outputs.changelog }} + token: ${{ secrets.ACCESS_TOKEN }} + + - name: Check if releasing from master + id: is_master + uses: babel/actions/ref-matches-branch@v2 + with: + name: master + + - name: Update CHANGELOG.md + if: steps.is_master.outputs.result == 1 + uses: babel/actions/update-changelog@v2 + with: + changelog: ${{ steps.changelog.outputs.changelog }} + + - name: Commit CHANGELOG.md + if: steps.is_master.outputs.result == 1 + run: | + git add CHANGELOG.md + git -c user.name="wanchun" -c user.email="445436867@qq.com" \ + commit -m "Add ${{ steps.tags.outputs.new }} to CHANGELOG.md [skip ci]" --no-verify --quiet + git push "https://wanchun:${{ secrets.ACCESS_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" master diff --git a/.gitignore b/.gitignore index ee852a04..b41b9ffb 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,6 @@ node_modules npm-debug.log /packages/fes-template/dist /packages/fes-doc/docs/.vuepress/dist -package-lock.json \ No newline at end of file +package-lock.json + +/.changelog \ No newline at end of file diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 00000000..422b1944 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1 @@ +module.exports = { extends: ['@commitlint/config-conventional'] }; diff --git a/lerna.json b/lerna.json index 4a0606c6..fa26ac82 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,31 @@ { + "version": "0.1.0", + "changelog": { + "repo": "WeBankFinTech/fes.js", + "cacheDir": ".changelog", + "labels": { + "PR: Spec Compliance :eyeglasses:": ":eyeglasses: Spec Compliance", + "PR: Breaking Change :boom:": ":boom: Breaking Change", + "PR: New Feature :rocket:": ":rocket: New Feature", + "PR: Bug Fix :bug:": ":bug: Bug Fix", + "PR: Polish :nail_care:": ":nail_care: Polish", + "PR: Docs :memo:": ":memo: Documentation", + "PR: Internal :house:": ":house: Internal", + "PR: Performance :running_woman:": ":running_woman: Performance", + "PR: Revert :leftwards_arrow_with_hook:": ":leftwards_arrow_with_hook: Revert" + } + }, + "command": { + "publish": { + "ignoreChanges": ["*.md", "**/test/**"] + }, + "version": { + "push": false + } + }, "packages": [ "packages/*" ], - "version": "independent", - "npmClient": "npm" + "npmClient": "npm", + "ignoreChanges": ["**/fes-doc/**", "**/test/**", "**/*.md"] } diff --git a/package.json b/package.json index d7920393..bd160f2c 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,28 @@ "lerna": "^3.18.4" }, "devDependencies": { - "@webank/eslint-config-webank": "^0.1.7" + "@commitlint/cli": "^11.0.0", + "@commitlint/config-conventional": "^11.0.0", + "@webank/eslint-config-webank": "^0.1.7", + "commitizen": "^4.2.1", + "cz-lerna-changelog": "^2.0.3", + "husky": "^4.3.0", + "lint-staged": "^10.4.0" + }, + "lint-staged": { + "*.{js,fes,jsx,vue,ts}": [ + "eslint --format=codeframe" + ] + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged", + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" + } + }, + "config": { + "commitizen": { + "path": "./node_modules/cz-lerna-changelog" + } } }