[Design] Explore UX for chat switcher results that shift when backend data loads #1532509
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, synchronize] | |
| branches: [main] | |
| jobs: | |
| validate: | |
| if: ${{ github.event_name == 'pull_request_target' }} | |
| uses: ./.github/workflows/contributorValidationGate.yml | |
| with: | |
| PR_NUMBER: ${{ github.event.pull_request.number }} | |
| PR_AUTHOR: ${{ github.event.pull_request.user.login }} | |
| AUTHOR_ASSOCIATION: ${{ github.event.pull_request.author_association }} | |
| CLA: | |
| needs: [validate] | |
| if: | | |
| always() | |
| && (github.event_name == 'issue_comment' || needs.validate.outputs.IS_AUTHORIZED == 'true') | |
| uses: Expensify/GitHub-Actions/.github/workflows/cla.yml@main | |
| secrets: inherit |