Add noise model v3 for perception topic #921
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: Check label | |
on: | |
pull_request: | |
branches: | |
- master | |
types: | |
- labeled | |
- unlabeled | |
jobs: | |
check_label: | |
name: Check label | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Check required label | |
if: (!contains(github.event.pull_request.labels.*.name, 'bump patch')) && | |
(!contains(github.event.pull_request.labels.*.name, 'bump minor')) && | |
(!contains(github.event.pull_request.labels.*.name, 'bump major')) | |
run: exit 1 |