-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(changelog)!: Merge similar commits within group (#197)
When changelog contain commits like `Text (#123)` and `Text (#456)` in some group (Features, Fixes, Refactoring, Other) _badabump_ now will merge those commits into `Text (#123, #456)` line. Fixes: #189
- Loading branch information
1 parent
41cb2b8
commit 3c4037e
Showing
7 changed files
with
100 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ runs: | |
run: "pipx install --python='${{ steps.python.outputs.python-path }}' poetry==${{ inputs.poetry-version }}" | ||
|
||
- name: "Cache venv" | ||
uses: "actions/[email protected].10" | ||
uses: "actions/[email protected].11" | ||
with: | ||
path: "./.venv/" | ||
key: "venv-${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}${{ inputs.cache-key-suffix }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ runs: | |
shell: "bash" | ||
|
||
- name: "Cache mypy" | ||
uses: "actions/[email protected].10" | ||
uses: "actions/[email protected].11" | ||
with: | ||
path: "./.mypy_cache/" | ||
key: "mypy-${{ runner.os }}-${{ inputs.python-version }}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ runs: | |
shell: "bash" | ||
|
||
- name: "Cache tox" | ||
uses: "actions/[email protected].10" | ||
uses: "actions/[email protected].11" | ||
with: | ||
path: "./.tox/" | ||
key: "tox-${{ inputs.python-version }}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
run: "poetry run python3 -m badabump --ci ${{ github.event.inputs.args }}" | ||
|
||
- id: "token" | ||
uses: "tibdex/[email protected]" | ||
uses: "tibdex/[email protected].0" | ||
with: | ||
app_id: "${{ secrets.BADABUMP_APP_ID }}" | ||
private_key: "${{ secrets.BADABUMP_APP_PRIVATE_KEY }}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
|
||
steps: | ||
- id: "token" | ||
uses: "tibdex/[email protected]" | ||
uses: "tibdex/[email protected].0" | ||
with: | ||
app_id: "${{ secrets.BADABUMP_APP_ID }}" | ||
private_key: "${{ secrets.BADABUMP_APP_PRIVATE_KEY }}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters