From a2432beaa2462dea22952b6add7536e15808bf58 Mon Sep 17 00:00:00 2001 From: DarkFighterLuke Date: Tue, 14 May 2024 18:56:57 +0200 Subject: [PATCH] Replace action to commit manifest --- .github/workflows/build.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index aad63ca..cd66e46 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -68,10 +68,9 @@ jobs: tag: ${{ steps.newtag.outputs.tag }} allowUpdates: true - - name: Update manifest.json - uses: stefanzweifel/git-auto-commit-action@v4 + - name: Commit manifest.json + uses: EndBug/add-and-commit@v9 with: - branch: master - commit_message: "Update manifest.json" - file_pattern: manifest.json - skip_fetch: true + add: manifest.json + commit: --signoff + message: "Update manifest.json"