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 5a71abd commit d4af2f8Copy full SHA for d4af2f8
.github/workflows/publish.yaml
@@ -20,7 +20,7 @@ on:
20
- "18.x"
21
- "20.x"
22
- "22.x"
23
- default: "20.x"
+ default: "18.x"
24
25
jobs:
26
release:
@@ -39,12 +39,14 @@ jobs:
39
40
- name: Bump node-vault version
41
run: |
42
+ git config --global user.email "github-actions[bot]@github.com"
43
+ git config --global user.name "github-actions[bot]"
44
npm version ${{ github.event.inputs.semver }}
45
46
- name: Push changes
47
uses: EndBug/add-and-commit@1bad3abcf0d6ec49a5857d124b0bfb52dc7bb081 # tag: v9.1.3
48
with:
- default_author: github-actions
49
+ default_author: github_actions
50
add: "package.json package-lock.json"
51
commit: --signoff
52
message: "chore(release): bump version to ${{ github.event.inputs.semver }}"
0 commit comments