From ca93f1028cc3b88b285cecf04c0dbbd90e4f32fa Mon Sep 17 00:00:00 2001 From: Josh Crites Date: Tue, 19 Dec 2023 16:29:11 -0500 Subject: [PATCH] try commit --- .github/workflows/update.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml index 753d899..6cd2724 100644 --- a/.github/workflows/update.yaml +++ b/.github/workflows/update.yaml @@ -26,3 +26,11 @@ jobs: - name: Check and update tutorials run: bash ./update_contract.sh $version_tag + + - name: Commit and push changes + run: | + git add . + git commit -m "Automated changes" -a || echo "No changes to commit" + git push + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}