Feature Request: Support for Azimuth Range Selection (0-360° vs. -180 to 180°) #33
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: CLA Assistant | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened, reopened, synchronize, closed] | |
| # CLA Assistant needs to comment on PRs, update status checks, and persist signatures. | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla-assistant: | |
| name: CLA Assistant | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: CLA Assistant | |
| if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' | |
| uses: contributor-assistant/github-action@v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| path-to-document: "https://github.com/sgoudelis/ground-station/blob/main/CLA.md" | |
| path-to-signatures: ".github/cla-signatures/version1/cla.json" | |
| branch: "cla-signatures" | |
| allowlist: "sgoudelis,dependabot[bot],github-actions[bot],renovate[bot]" | |
| custom-notsigned-prcomment: "Thanks for the contribution. Please review and sign the CLA: $pathToCLADocument" | |
| custom-allsigned-prcomment: "All contributors have signed the CLA." |