openapi.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. name: openapi
  2. on:
  3. push:
  4. branches:
  5. - master
  6. # hack for https://github.com/actions/cache/issues/810#issuecomment-1222550359
  7. env:
  8. SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3
  9. jobs:
  10. build_and_deref_json:
  11. runs-on: ubuntu-24.04
  12. timeout-minutes: 90
  13. steps:
  14. - name: Getsentry Token
  15. id: getsentry
  16. uses: getsentry/action-github-app-token@d4b5da6c5e37703f8c3b3e43abb5705b46e159cc # v3.0.0
  17. with:
  18. app_id: ${{ vars.SENTRY_INTERNAL_APP_ID }}
  19. private_key: ${{ secrets.SENTRY_INTERNAL_APP_PRIVATE_KEY }}
  20. - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
  21. - name: Check for python file changes
  22. uses: dorny/paths-filter@0bc4621a3135347011ad047f9ecf449bf72ce2bd # v3.0.0
  23. id: changes
  24. with:
  25. token: ${{ github.token }}
  26. filters: .github/file-filters.yml
  27. - name: Setup sentry env
  28. uses: ./.github/actions/setup-sentry
  29. with:
  30. mode: migrations
  31. if: steps.changes.outputs.api_docs == 'true'
  32. - name: Checkout getsentry/sentry-api-schema
  33. if: steps.changes.outputs.api_docs == 'true'
  34. uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
  35. with:
  36. ref: 'main'
  37. repository: getsentry/sentry-api-schema
  38. path: sentry-api-schema
  39. token: ${{ steps.getsentry.outputs.token }}
  40. - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
  41. if: steps.changes.outputs.api_docs == 'true'
  42. id: setup-node
  43. with:
  44. node-version-file: '.volta.json'
  45. - name: Build OpenAPI Derefed JSON
  46. if: steps.changes.outputs.api_docs == 'true'
  47. # install ts-node for ts build scripts to execute properly without potentially installing
  48. # conflicting deps when running scripts locally
  49. # see: https://github.com/getsentry/sentry/pull/32328/files
  50. run: |
  51. yarn add ts-node && make build-api-docs
  52. - name: Build RPC method schema
  53. if: steps.changes.outputs.api_docs == 'true'
  54. run: |
  55. sentry rpcschema > rpc_method_schema.json
  56. - name: Copy artifacts into getsentry/sentry-api-schema
  57. if: steps.changes.outputs.api_docs == 'true'
  58. run: |
  59. cp tests/apidocs/openapi-derefed.json sentry-api-schema
  60. cp src/sentry/apidocs/api_ownership_stats_dont_modify.json sentry-api-schema
  61. cp rpc_method_schema.json sentry-api-schema
  62. - name: Git Commit & Push
  63. uses: stefanzweifel/git-auto-commit-action@0049e3fa4059ca715255fbbcb7dea4516f02ce0a # v4.15.3
  64. if: steps.changes.outputs.api_docs == 'true'
  65. with:
  66. repository: sentry-api-schema
  67. branch: main
  68. commit_message: Generated
  69. commit_user_email: bot@getsentry.com
  70. commit_user_name: openapi-getsentry-bot