feat: Add ability to set GitHub app as source for git dependency resources #715
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: Require Tests for SDKv2 to TPF Migrations | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| check-migration-tests: | |
| name: Require Tests for SDKv2 to TPF Migrations | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check for missing migration tests | |
| run: | | |
| chmod +x ci-scripts/helpers/check_migration_tests.sh | |
| ci-scripts/helpers/check_migration_tests.sh origin/main |