fix false positives in toast #6275
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: Pull Request | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: | |
- develop | |
- feat/* | |
- main | |
- release/v[0-9]+.[0-9]+.[0-9]+ | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
e2e: | |
uses: ./.github/workflows/e2e.yml | |
lint: | |
uses: ./.github/workflows/lint-app.yml | |
teams: | |
runs-on: ubuntu-latest | |
if: false && github.base_ref == 'develop' # temporarily disabled | |
steps: | |
- uses: convictional/[email protected] | |
with: | |
owner: voxel51 | |
repo: fiftyone-teams | |
github_token: ${{ secrets.FIFTYONE_GITHUB_TOKEN }} | |
github_user: voxel51-bot | |
workflow_file_name: merge-oss.yml | |
ref: develop | |
wait_interval: 20 | |
client_payload: | | |
{ | |
"author": "${{ github.event.pull_request.user.login }}", | |
"branch": "${{ github.head_ref || github.ref_name }}", | |
"pr": ${{ github.event.pull_request.number }} | |
} | |
propagate_failure: true | |
trigger_workflow: true | |
wait_workflow: true | |
test: | |
uses: ./.github/workflows/test.yml | |
all-tests: | |
runs-on: ubuntu-latest | |
needs: [build, lint, test, e2e] | |
if: always() | |
steps: | |
- run: sh -c ${{ | |
needs.build.result == 'success' && | |
needs.lint.result == 'success' && | |
needs.test.result == 'success' }} |