{Continuous Integration} Project Aria Plugins - Fix CI workflow failures #17
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: CLA check | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened, synchronize] | |
| permissions: | |
| actions: write | |
| contents: read | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla: | |
| name: Meta CLA | |
| runs-on: ubuntu-latest | |
| if: >- | |
| (github.event.issue.pull_request && | |
| contains(github.event.comment.body, '@facebook-github-bot label')) || | |
| github.event_name == 'pull_request_target' | |
| steps: | |
| - name: Run Meta CLA bot | |
| uses: facebook/cla@v1 | |
| # Token comes from the repo secret set by the Meta open-source team | |
| # once the project is onboarded. | |
| # See: https://www.internalfb.com/intern/wiki/Open_Source/Maintain/CLA/ |