fix(sec-auto): aikido Fix security issue in symfony/string via minor version upgrade from 8.0.11 to 8.0.13 #1007
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: Conventional Commits | |
| on: | |
| # https://github.com/marketplace/actions/semantic-pull-request#event-triggers | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| merge_group: | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| main: | |
| name: Validate PR title | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: benhodgson87/conventional-pull-request-action@5cc233b5bbe95b3293e9e464ded984ed47755abe # v2 | |
| if: ${{ github.event_name == 'pull_request' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| commitlintRulesPath: ".github/commitlint.config.js" |