Add hnerv_pose_warmup_selector submission (score 1.68) #101
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 Welcome | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| branches: [master] | |
| jobs: | |
| welcome: | |
| if: github.repository == 'commaai/comma_video_compression_challenge' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Comment and assign reviewer | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const prNumber = context.payload.pull_request.number; | |
| const author = context.payload.pull_request.user.login; | |
| // Add a welcome comment | |
| await github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: prNumber, | |
| body: [ | |
| `Thanks for the submission @${author}! 🤏`, | |
| '', | |
| 'A maintainer will review your PR shortly.', | |
| '', | |
| 'To run the evaluation, a maintainer will trigger the `eval` workflow with your PR number.', | |
| ].join('\n'), | |
| }); | |
| // Assign a reviewer — replace with your GitHub username(s) | |
| const reviewers = ['YassineYousfi'].filter(r => r !== author); | |
| if (reviewers.length > 0) { | |
| await github.rest.pulls.requestReviewers({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| pull_number: prNumber, | |
| reviewers, | |
| }); | |
| } |