File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,14 @@ inputs:
1919 description : " Set git config"
2020 required : false
2121 default : " true"
22+ git-user-name :
23+ description : " Git user name"
24+ required : false
25+ default : " github-actions[bot]"
26+ git-user-email :
27+ description : " Git user email"
28+ required : false
29+ default : " 41898282+github-actions[bot]@users.noreply.github.com"
2230
2331branding :
2432 icon : " anchor"
3038 - if : ${{ inputs.set-git-config == 'true' }}
3139 shell : bash
3240 run : |
33- git config --global user.name "github-actions[bot] "
34- git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com "
41+ git config --global user.name "${{ inputs.git-user-name }} "
42+ git config --global user.email "${{ inputs.git-user-email }} "
3543 - id : set-vars
3644 uses : actions/github-script@v8
3745 env :
You can’t perform that action at this time.
0 commit comments