feat: Add max_det parameter to YOLO model prediction #1666
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 labeler" | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| branches: | |
| - master | |
| - 'release/**' | |
| jobs: | |
| autolabel: | |
| name: "PR label validator" | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: hmarr/[email protected] | |
| - uses: thehanimo/[email protected] | |
| name: "Validate PR's title" | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| pass_on_octokit_error: false | |
| configuration_path: ".github/pr-title-checker-config.json" | |
| - uses: release-drafter/[email protected] | |
| name: "Set PR's label based on title" | |
| with: | |
| disable-releaser: true | |
| config-name: autolabeler.yml | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |