From 26ca9ac17aea8d8ec4da329e733a95cd3cf64d6f Mon Sep 17 00:00:00 2001 From: lubiana Date: Wed, 21 May 2025 22:12:09 +0200 Subject: [PATCH] test --- .forgejo/workflows/pull_request.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.forgejo/workflows/pull_request.yml b/.forgejo/workflows/pull_request.yml index 73e3420..e741d66 100644 --- a/.forgejo/workflows/pull_request.yml +++ b/.forgejo/workflows/pull_request.yml @@ -22,18 +22,5 @@ jobs: php-version: '8.4' tools: 'composer' extensions: intl,zip - - name: lint - run: composer lint - - name: test - run: composer test - - name: GIT commit and push all changed files - env: - CI_COMMIT_MESSAGE: Continuous Integration Fixes - CI_COMMIT_AUTHOR: Continuous Integration - run: | - if [[ -n "$(git status -s)" ]]; then - git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" - git config --global user.email "gitbot@users.noreply.php.fail" - git commit -am "${{ env.CI_COMMIT_MESSAGE }}" - git push - fi + - name: composer install + run: composer install