GS/GL/DX11: Backport multidraw fb copy from DX11 to GL, and some DX11 cleanup. #245
Workflow file for this run
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: 'Commit Message Check' | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| jobs: | |
| check-commit-message: | |
| name: Check Commit Message | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check for a commit prefix | |
| uses: gsactions/commit-message-checker@16fa2d5de096ae0d35626443bcd24f1e756cafee | |
| with: | |
| accessToken: ${{ secrets.GITHUB_TOKEN }} | |
| pattern: '^[A-Z0-9][A-Za-z0-9 \["\/\\]+:.+' | |
| excludeTitle: true | |
| excludeDescription: true | |
| checkAllCommitMessages: true | |
| error: 'Commit messages should be capitalized, start with a prefix, delimited by a colon. Example: "Debugger: Add a paste bytes option to the memory view"' |