From 431f5a5d3938fc89072b7c4168a096156510717a Mon Sep 17 00:00:00 2001 From: AngrySoundTech Date: Fri, 27 Oct 2023 11:53:31 -0400 Subject: [PATCH] Should probably commit the changes lol --- containers/.github/workflows/update-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/.github/workflows/update-plugin.yml b/containers/.github/workflows/update-plugin.yml index 189fa78ed..ee3824e47 100644 --- a/containers/.github/workflows/update-plugin.yml +++ b/containers/.github/workflows/update-plugin.yml @@ -44,7 +44,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 push -u origin feature/update-${{ inputs.plugin }}-${{ inputs.version }} + run: git add . && git commit -m "${{ inputs.plugin }}-${{ inputs.version }}" && git push -u origin feature/update-${{ inputs.plugin }}-${{ inputs.version }} - name: Create PR run: gh pr create -B master -H feature/update-${{ inputs.plugin }}-${{ inputs.version }} -t "Update ${{ inputs.plugin }}-${{ inputs.version }}" -b "Update ${{ inputs.plugin }}-${{ inputs.version }}"