Bad ldap password and null password in db result in error 500 #163
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Format (PHP) | |
| on: | |
| pull_request: | |
| branches: [ "1.2" ] | |
| paths: | |
| - '**/*.php' | |
| # Allow manually triggering the workflow. | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| php-cs-fixer: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| coverage: none | |
| - name: Install Composer dependencies | |
| uses: "ramsey/composer-install@v3" | |
| - name: Run php-cs-fixer | |
| run: ./vendor/bin/php-cs-fixer fix --allow-risky=yes | |
| - name: Commit changes | |
| if: github.event_name == 'pull_request' | |
| uses: stefanzweifel/git-auto-commit-action@v7 | |
| with: | |
| commit_message: Apply php-cs-fixer changes | |
| file_pattern: '*.php' |