migrations.yml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. name: migrations
  2. on: pull_request
  3. # Cancel in progress workflows on pull_requests.
  4. # https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
  5. concurrency:
  6. group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
  7. cancel-in-progress: true
  8. defaults:
  9. run:
  10. # the default default is:
  11. # bash --noprofile --norc -eo pipefail {0}
  12. shell: bash --noprofile --norc -eo pipefail -ux {0}
  13. jobs:
  14. did-migration-change:
  15. name: check if any migration changes
  16. runs-on: ubuntu-20.04
  17. timeout-minutes: 3
  18. # Map a step output to a job output
  19. outputs:
  20. added: ${{ steps.changes.outputs.migrations_added }}
  21. modified: ${{ steps.changes.outputs.migrations_modified }}
  22. steps:
  23. - name: Checkout sentry
  24. uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
  25. - name: Match migration files
  26. uses: getsentry/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1
  27. id: changes
  28. with:
  29. token: ${{ github.token }}
  30. filters: .github/file-filters.yml
  31. modified-migration:
  32. name: check if modified migration
  33. runs-on: ubuntu-20.04
  34. timeout-minutes: 4
  35. needs: did-migration-change
  36. if: needs.did-migration-change.outputs.modified == 'true'
  37. steps:
  38. - name: Failure because of modified migration
  39. run: |
  40. echo "If you have a valid reason to modify a migration please get approval"
  41. echo "from @getsentry/owners-migrations." && exit 1
  42. sql:
  43. name: Generate SQL
  44. runs-on: ubuntu-20.04
  45. timeout-minutes: 8
  46. strategy:
  47. matrix:
  48. pg-version: ['14']
  49. needs: did-migration-change
  50. if: needs.did-migration-change.outputs.added == 'true'
  51. steps:
  52. # Checkout master to run all merged migrations.
  53. - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
  54. with:
  55. ref: master
  56. - name: Setup sentry env
  57. uses: ./.github/actions/setup-sentry
  58. id: setup
  59. with:
  60. pg-version: ${{ matrix.pg-version }}
  61. - name: Apply migrations
  62. run: |
  63. sentry upgrade --noinput
  64. # Checkout the current ref
  65. - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
  66. with:
  67. clean: false
  68. - name: Get changed migration files
  69. id: file
  70. run: |
  71. echo 'added<<EOF' >> "$GITHUB_OUTPUT"
  72. git diff --diff-filter=A --name-only origin/master HEAD | grep 'src/sentry/migrations/' >> "$GITHUB_OUTPUT"
  73. echo 'EOF' >> "$GITHUB_OUTPUT"
  74. - name: Generate SQL for migration
  75. uses: getsentry/action-migrations@f1dc34590460c0fe06ec11c00fec6c16a2159977 # main
  76. env:
  77. SENTRY_LOG_LEVEL: ERROR
  78. with:
  79. githubToken: ${{ secrets.GITHUB_TOKEN }}
  80. migration: ${{ steps.file.outputs.added }}