Qt: Make the SettingWidget default match the settings interface default #240
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"' |