diff --git a/containers/.github/workflows/update-plugin.yml b/containers/.github/workflows/update-plugin.yml index 788402e0a..d88449386 100644 --- a/containers/.github/workflows/update-plugin.yml +++ b/containers/.github/workflows/update-plugin.yml @@ -48,7 +48,7 @@ jobs: run: gh release download -R ${{ github.repository_owner }}/${{ inputs.plugin }} ${{ inputs.version }} -p ${{ inputs.asset_pattern}} - name: Commit and push branch - run: git add . && git commit -m "${{ inputs.plugin }}-${{ inputs.version }}" && git push -u origin feature/update-${{ inputs.plugin }}-${{ inputs.version }} + run: git add . && git commit --author="github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" -m "${{ inputs.plugin }}-${{ inputs.version }}" && git push -u origin feature/update-${{ inputs.plugin }}-${{ inputs.version }} - name: Create PR run: gh pr create -B ${{ steps.extract_branch.outputs.branch }} -H feature/update-${{ inputs.plugin }}-${{ inputs.version }} -t "Update ${{ inputs.plugin }}-${{ inputs.version }}" -b "Update ${{ inputs.plugin }}-${{ inputs.version }}"