We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6754784 commit 0c05393Copy full SHA for 0c05393
.github/workflows/preview-bump-version.yml
@@ -10,7 +10,7 @@ jobs:
10
container:
11
image: commitizen/commitizen:4.8.3@sha256:08a078c52b368f85f34257a66e10645ee74d8cbe9b471930b80b2b4e95a9bd4a
12
13
- name: "Bump version and create changelog with commitizen"
+ name: "Preview next version"
14
steps:
15
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
16
id: app-token
@@ -22,7 +22,11 @@ jobs:
22
fetch-depth: 0
23
token: ${{ steps.app-token.outputs.token }}
24
ref: ${{ github.head_ref }}
25
+ - name: Configure git
26
+ run: |
27
+ git config --global --add safe.directory "*" # otherwise cz does not find .git/ directory
28
+
29
- id: cz
30
name: Preview next version
31
run: |
- cz bump --get-next
32
+ cz bump --get-next
0 commit comments