Skip to content

Bad ldap password and null password in db result in error 500 #163

Bad ldap password and null password in db result in error 500

Bad ldap password and null password in db result in error 500 #163

Workflow file for this run

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'