feat(s2n-quic-bench): Add stress test for s2n-quic servers #130
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: PR Title Validation | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize, reopened, edited] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-pr-title: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: PR Conventional Commit Validation | |
| uses: ytanikin/pr-conventional-commits@1.5.1 | |
| with: | |
| task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert","build"]' | |
| add_label: 'false' | |
| - name: Failure case | |
| if: failure() | |
| run: | | |
| echo "Make sure the PR title/commit follows https://www.conventionalcommits.org/" | |
| exit 1 |