Update to support reflex >0.8.0 #9
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: CI for Fork PRs | |
| on: | |
| pull_request_target: | |
| # Note: Repo must be set to require approval before running workflows from forks | |
| # This only runs basic checks without secrets for safety | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| basic-checks: | |
| uses: ./.github/workflows/_reusable-ci.yml | |
| with: | |
| checkout_ref: ${{ github.event.pull_request.head.sha }} | |
| checkout_repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| check_type: 'basic' | |
| secrets: inherit |