Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: commitizen/cz-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.2.4
Choose a base ref
...
head repository: commitizen/cz-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.2.5
Choose a head ref
Loading
Showing with 20,309 additions and 10,331 deletions.
  1. +20 −0 .github/workflows/release.yml
  2. +2 −1 .gitignore
  3. +1 −0 .npmignore
  4. +0 −25 .travis.yml
  5. +50 −50 README.md
  6. +1 −1 azure-pipelines.yml
  7. +5 −2 jobs/build.yml
  8. +5 −0 logo/commitizen-logo-color.svg
  9. +100 −0 logo/commitizen-logo-mono.svg
  10. +58 −0 logo/generate.sh
  11. +19,926 −10,216 package-lock.json
  12. +30 −31 package.json
  13. +2 −1 src/cli/strategies/git-cz.js
  14. +2 −2 src/commitizen/staging.js
  15. +2 −1 src/common/util.js
  16. +67 −0 test/tests/commit.js
  17. +37 −0 test/tests/staging.js
  18. +1 −1 test/tools/clean.js
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release
"on":
push:
branches:
- master
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: npm
node-version: lts/*
- run: npm clean-install
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -5,4 +5,5 @@ artifacts/
/dist
npm-debug.log
.nyc_output
test/tools/trigger-appveyor-tests.sh
test/tools/trigger-appveyor-tests.sh
logo/*.png
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -7,3 +7,4 @@ test/tools/trigger-appveyor-tests.sh
/appveyor.yml
jsconfig.json
travis_after_all.py
/.nyc_output
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

Loading