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 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..