@@ -61,13 +61,24 @@ runs:
6161 shell : bash
6262 if : inputs.setup_php == 'true'
6363
64- - name : Checkouting original wiki with needed branch ...
64+ - name : Cloning original wiki...
6565 run : |
66- bash ${{ github.action_path }}/bin/checkout .sh \
66+ bash ${{ github.action_path }}/bin/cloning .sh \
6767 "${{ inputs.wiki_github_update_token }}" \
6868 "${{ inputs.wiki_github_update_user }}"
6969 shell : bash
7070
71+ - name : Configuring GIT...
72+ run : |
73+ bash ${{ github.action_path }}/bin/configure_git.sh \
74+ "${{ inputs.wiki_github_update_user }}" \
75+ "${{ inputs.wiki_github_update_user }}@users.noreply.github.com"
76+ shell : bash
77+
78+ - name : Checkouting needed branch...
79+ run : bash ${{ github.action_path }}/bin/checkout.sh
80+ shell : bash
81+
7182 - name : Generating new documentation with clean/phpdoc-md...
7283 uses :
impresscms-dev/[email protected] 7384 with :
@@ -107,9 +118,7 @@ runs:
107118 - name : Commit and push wiki changes...
108119 run : |
109120 bash ${{ github.action_path }}/bin/commit_and_push.sh \
110- "${{ github.event.commits[0].message }}" \
111- "${{ inputs.wiki_github_update_user }}" \
112- "${{ inputs.wiki_github_update_user }}@users.noreply.github.com"
121+ "${{ github.event.commits[0].message }}"
113122 shell : bash
114123
115124 - name : Clearing temp paths...
0 commit comments