openapi.yml 2.7 KB

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