Update Dullahan to v1.31 with CEF 148.0.9 (Chromium-148.0.7778.180) #3167
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: Check PR | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-description: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check PR description | |
| uses: actions/github-script@v9 | |
| with: | |
| script: | | |
| const description = context.payload.pull_request.body || ''; | |
| if (description.trim().length < 20) { | |
| core.setFailed("❌ PR description is too short. Please provide at least 20 characters."); | |
| } |