Use args_from_dict
in all camera classes
#264
Workflow file for this run
This file contains 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: Milestone Assigned | |
on: | |
pull_request: | |
types: [milestoned, demilestoned, opened] | |
jobs: | |
check-milestone: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for milestone | |
run: | | |
if [ -z "${{ github.event.pull_request.milestone }}" ]; then | |
echo "No milestone assigned to the pull request." | |
exit 1 | |
fi |