openapi.yml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. if: steps.changes.outputs.api_docs == 'true'
  30. - name: Checkout getsentry/sentry-api-schema
  31. if: steps.changes.outputs.api_docs == 'true'
  32. uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
  33. with:
  34. ref: 'main'
  35. repository: getsentry/sentry-api-schema
  36. path: sentry-api-schema
  37. token: ${{ steps.getsentry.outputs.token }}
  38. - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
  39. if: steps.changes.outputs.api_docs == 'true'
  40. id: setup-node
  41. with:
  42. node-version-file: '.volta.json'
  43. - name: Build OpenAPI Derefed JSON
  44. if: steps.changes.outputs.api_docs == 'true'
  45. # install ts-node for ts build scripts to execute properly without potentially installing
  46. # conflicting deps when running scripts locally
  47. # see: https://github.com/getsentry/sentry/pull/32328/files
  48. run: |
  49. yarn add ts-node && make build-api-docs
  50. - name: Build RPC method schema
  51. if: steps.changes.outputs.api_docs == 'true'
  52. run: |
  53. sentry rpcschema > rpc_method_schema.json
  54. - name: Copy artifacts into getsentry/sentry-api-schema
  55. if: steps.changes.outputs.api_docs == 'true'
  56. run: |
  57. cp tests/apidocs/openapi-derefed.json sentry-api-schema
  58. cp src/sentry/apidocs/api_ownership_stats_dont_modify.json sentry-api-schema
  59. cp rpc_method_schema.json sentry-api-schema
  60. - name: Git Commit & Push
  61. uses: stefanzweifel/git-auto-commit-action@0049e3fa4059ca715255fbbcb7dea4516f02ce0a # v4.15.3
  62. if: steps.changes.outputs.api_docs == 'true'
  63. with:
  64. repository: sentry-api-schema
  65. branch: main
  66. commit_message: Generated
  67. commit_user_email: bot@getsentry.com
  68. commit_user_name: openapi-getsentry-bot