feat(linux): Add PCIe performance data for AM64X 12.00.00 release #1950
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 Check | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: ['master'] | |
| jobs: | |
| commit-check: | |
| name: Commit Check | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Check commit | |
| uses: commit-check/commit-check-action@v2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| message: true | |
| branch: false | |
| author-name: true | |
| author-email: true | |
| job-summary: true | |
| pr-comments: false |