3737 token : ${{ secrets.COMMAND_BOT_PAT }}
3838 repository : ${{ github.event.repository.full_name }}
3939 comment-id : ${{ github.event.comment.id }}
40- reactions : " +1 "
40+ reactions : ' +1 '
4141
4242 - name : Parse command
4343 uses : skjnldsv/parse-command-comment@5c955203c52424151e6d0e58fb9de8a9f6a605a1 # v2
7777
7878 - name : Setup git
7979 run : |
80- git config --local user.email " [email protected] " 81- git config --local user.name " nextcloud-command"
80+ git config --local user.email ' [email protected] ' 81+ git config --local user.name ' nextcloud-command'
8282
8383 - name : Read package.json node and npm engines version
8484 uses : skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3
@@ -94,13 +94,13 @@ jobs:
9494 cache : npm
9595
9696 - name : Set up npm ${{ steps.package-engines-versions.outputs.npmVersion }}
97- run : npm i -g npm@" ${{ steps.package-engines-versions.outputs.npmVersion }}"
97+ run : npm i -g ' npm@${{ steps.package-engines-versions.outputs.npmVersion }}'
9898
9999 - name : Rebase to ${{ needs.init.outputs.base_ref }}
100100 if : ${{ contains(needs.init.outputs.arg1, 'rebase') }}
101101 run : |
102- git fetch origin ${{ needs.init.outputs.base_ref }}:${{ needs.init.outputs.base_ref }}
103- git rebase origin/${{ needs.init.outputs.base_ref }}
102+ git fetch origin ' ${{ needs.init.outputs.base_ref }}:${{ needs.init.outputs.base_ref }}'
103+ git rebase ' origin/${{ needs.init.outputs.base_ref }}'
104104
105105 - name : Install dependencies & build
106106 env :
@@ -113,30 +113,30 @@ jobs:
113113 - name : Commit default
114114 if : ${{ !contains(needs.init.outputs.arg1, 'fixup') && !contains(needs.init.outputs.arg1, 'amend') }}
115115 run : |
116- git add ${{ github.workspace }}${{ needs.init.outputs.git_path }}
116+ git add ' ${{ github.workspace }}${{ needs.init.outputs.git_path }}'
117117 git commit --signoff -m 'chore(assets): Recompile assets'
118118
119119 - name : Commit fixup
120120 if : ${{ contains(needs.init.outputs.arg1, 'fixup') }}
121121 run : |
122- git add ${{ github.workspace }}${{ needs.init.outputs.git_path }}
122+ git add ' ${{ github.workspace }}${{ needs.init.outputs.git_path }}'
123123 git commit --fixup=HEAD --signoff
124124
125125 - name : Commit amend
126126 if : ${{ contains(needs.init.outputs.arg1, 'amend') }}
127127 run : |
128- git add ${{ github.workspace }}${{ needs.init.outputs.git_path }}
128+ git add ' ${{ github.workspace }}${{ needs.init.outputs.git_path }}'
129129 git commit --amend --no-edit --signoff
130130 # Remove any [skip ci] from the amended commit
131131 git commit --amend -m "$(git log -1 --format='%B' | sed '/\[skip ci\]/d')"
132132
133133 - name : Push normally
134134 if : ${{ !contains(needs.init.outputs.arg1, 'rebase') && !contains(needs.init.outputs.arg1, 'amend') }}
135- run : git push origin ${{ needs.init.outputs.head_ref }}
135+ run : git push origin ' ${{ needs.init.outputs.head_ref }}'
136136
137137 - name : Force push
138138 if : ${{ contains(needs.init.outputs.arg1, 'rebase') || contains(needs.init.outputs.arg1, 'amend') }}
139- run : git push --force origin ${{ needs.init.outputs.head_ref }}
139+ run : git push --force origin ' ${{ needs.init.outputs.head_ref }}'
140140
141141 - name : Add reaction on failure
142142 uses : peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
0 commit comments