File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 58
58
uses : orhun/git-cliff-action@v4
59
59
with :
60
60
config : cliff.toml
61
- args : --verbose
61
+ args : --tag ${{ github.event.inputs.version }} -- verbose
62
62
env :
63
63
OUTPUT : CHANGELOG.md
64
64
GITHUB_REPO : ${{ github.repository }}
68
68
run : |
69
69
git config --global user.name "${{ steps.app-token.outputs.user-name }}"
70
70
git config --global user.email "${{ steps.app-token.outputs.user-email }}"
71
- git add package.json Cargo.toml index.js index.d.ts CHANGELOG.md LICENSE-3RD-PARTY.txt
71
+ git add package.json Cargo.toml Cargo.lock index.js index.d.ts CHANGELOG.md LICENSE-3RD-PARTY.txt
72
72
git commit -m "${{ github.event.inputs.version }}"
73
73
git push
74
74
- name : Set version output
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ trim = true
26
26
render_always = true
27
27
# An array of regex based postprocessors to modify the changelog.
28
28
postprocessors = [
29
- { pattern = ' \((\w+\s)? #([0-9]+)\)' , replace = " ([#${2}](https://github.com/$GITHUB_REPO/issues /${2}))" },
29
+ { pattern = ' \((\w+?\s* #([0-9]+)) \)' , replace = " ([#${2}](https://github.com/mongodb-js/atlas-local-lib-js/pull /${2}))" },
30
30
]
31
31
# render body even when there are no releases to process
32
32
# render_always = true
@@ -78,7 +78,7 @@ commit_parsers = [
78
78
filter_commits = false
79
79
# An array of link parsers for extracting external references, and turning them into URLs, using regex.
80
80
link_parsers = [
81
- { pattern = " #(\\ d+)" , href = " https://github.com/$GITHUB_REPO/ issues/$1" }
81
+ { pattern = " #(\\ d+)" , href = " https://github.com/mongodb-js/atlas-local-lib-js/ issues/$1" },
82
82
]
83
83
# Include only the tags that belong to the current branch.
84
84
use_branch_tags = false
You can’t perform that action at this time.
0 commit comments