chore: Upgrade dependencies for lib #6885
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: Examples - PR | |
on: | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- labeled | |
- unlabeled | |
- reopened | |
jobs: | |
examples: | |
name: "Examples Integration Tests - PR" | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci/skip-examples') && !contains(github.event.pull_request.labels.*.name, 'ci/unit-only') }} | |
uses: ./.github/workflows/examples.yml | |
with: | |
concurrency_group_prefix: pr | |
secrets: inherit | |
results: | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
name: "Examples Integration Tests - PR - Result" | |
needs: [examples] | |
steps: | |
- run: exit 1 | |
if: >- | |
${{ | |
contains(needs.*.result, 'failure') | |
|| contains(needs.*.result, 'cancelled') | |
}} |