123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- name: migrations
- on: pull_request
- # Cancel in progress workflows on pull_requests.
- # https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
- concurrency:
- group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
- cancel-in-progress: true
- defaults:
- run:
- # the default default is:
- # bash --noprofile --norc -eo pipefail {0}
- shell: bash --noprofile --norc -eo pipefail -ux {0}
- jobs:
- did-migration-change:
- name: check if any migration changes
- runs-on: ubuntu-24.04
- timeout-minutes: 3
- # Map a step output to a job output
- outputs:
- added: ${{ steps.changes.outputs.migrations_added }}
- modified: ${{ steps.changes.outputs.migrations_modified }}
- steps:
- - name: Checkout sentry
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- - name: Match migration files
- uses: dorny/paths-filter@0bc4621a3135347011ad047f9ecf449bf72ce2bd # v3.0.0
- id: changes
- with:
- token: ${{ github.token }}
- filters: .github/file-filters.yml
- sql:
- name: Generate SQL
- runs-on: ubuntu-24.04
- timeout-minutes: 8
- strategy:
- matrix:
- pg-version: ['14']
- needs: did-migration-change
- if: needs.did-migration-change.outputs.added == 'true'
- steps:
- # Checkout master to run all merged migrations.
- - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- with:
- ref: master
- - name: Setup sentry env
- uses: ./.github/actions/setup-sentry
- with:
- use-new-devservices: true
- mode: migrations
- - name: Apply migrations
- run: |
- sentry upgrade --noinput
- # Checkout the current ref
- - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- with:
- clean: false
- - name: Get changed migration files
- id: file
- run: |
- echo 'added<<EOF' >> "$GITHUB_OUTPUT"
- git diff --diff-filter=A --name-only origin/master HEAD -- 'src/sentry/*/migrations/*' 'src/sentry/migrations/*' ':!*/__init__.py' >> "$GITHUB_OUTPUT"
- echo 'EOF' >> "$GITHUB_OUTPUT"
- - name: Generate SQL for migration
- uses: getsentry/action-migrations@4d8ed0388dfc0774302bbfd5204e518f9ac4f066 # main
- env:
- SENTRY_LOG_LEVEL: ERROR
- with:
- githubToken: ${{ secrets.GITHUB_TOKEN }}
- migration: ${{ steps.file.outputs.added }}
|