imp: Reopen resolved ticket if answerer is not an agent #1692
This file contains 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: Linters | |
on: | |
push: | |
branches: | |
- main | |
- 'feat/**' | |
pull_request: | |
branches: | |
- main | |
- 'feat/**' | |
env: | |
NO_DOCKER: true | |
jobs: | |
run: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-22.04] | |
php-versions: ['8.2', '8.3'] | |
name: Lint PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup the CI | |
uses: ./.github/actions/setup | |
with: | |
php-version: ${{ matrix.php-versions }} | |
- name: Run the linters | |
run: make lint |