web: sortable column headers with tooltips in timing path table #1549
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 Size Labeler | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize] | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Label PR Size | |
| uses: codelytv/pr-size-labeler@095a41fca88b8764fd9e008ad269bcdb82bb38b9 # v1.10.4 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| xs_label: 'size/XS' | |
| xs_max_size: '10' | |
| s_label: 'size/S' | |
| s_max_size: '100' | |
| m_label: 'size/M' | |
| m_max_size: '500' | |
| l_label: 'size/L' | |
| l_max_size: '1000' | |
| xl_label: 'size/XL' | |
| fail_if_xl: 'false' | |
| files_to_ignore: '*ok' |