Add app and script asset namespace resources #1296
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: Migration Conflict Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| migration-conflict: | |
| name: Migration Conflict Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| # Full history so the script can diff migrations against the base branch. | |
| fetch-depth: 0 | |
| - name: Check for duplicate and mutated migration numbers | |
| run: bash scripts/check-migration-conflicts.sh | |
| env: | |
| MIGRATION_BASE_REF: origin/${{ github.base_ref }} |