From 31a4e466ff2732b00ccd6dff8e0f82ca9dfe0975 Mon Sep 17 00:00:00 2001 From: dconco Date: Tue, 24 Dec 2024 19:15:23 +0100 Subject: [PATCH 1/2] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 76c4996..720919f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # PhpSlides/framework -The main code for PhpSlides. +The main code for PhpSlides.. From b370206efa455d0ba294ca1c931199865387dcd2 Mon Sep 17 00:00:00 2001 From: dconco Date: Tue, 24 Dec 2024 19:21:22 +0100 Subject: [PATCH 2/2] Enhance GitHub Actions workflow by adding git configuration step for automated pushes --- .github/workflows/tests.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4fae09f..0073413 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -50,12 +50,17 @@ jobs: push_to_main: runs-on: ubuntu-latest needs: test - if: success() + if: ${{ success() }} steps: - name: Checkout repository uses: actions/checkout@v4 + - name: Set up git + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + - name: Push changes to main run: | git fetch origin main dev