openapi.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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-20.04
  12. timeout-minutes: 90
  13. steps:
  14. - name: Getsentry Token
  15. id: getsentry
  16. uses: getsentry/action-github-app-token@97c9e23528286821f97fba885c1b1123284b29cc # v2.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@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
  21. with:
  22. # Avoid codecov error message related to SHA resolution:
  23. # https://github.com/codecov/codecov-bash/blob/7100762afbc822b91806a6574658129fe0d23a7d/codecov#L891
  24. fetch-depth: '2'
  25. - name: Check for python file changes
  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. - name: Setup sentry env
  32. uses: ./.github/actions/setup-sentry
  33. if: steps.changes.outputs.api_docs == 'true'
  34. - name: Checkout getsentry/sentry-api-schema
  35. if: steps.changes.outputs.api_docs == 'true'
  36. uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
  37. with:
  38. ref: 'main'
  39. repository: getsentry/sentry-api-schema
  40. path: sentry-api-schema
  41. token: ${{ steps.getsentry.outputs.token }}
  42. - uses: getsentry/action-setup-volta@54775a59c41065f54ecc76d1dd5f2cdc7a1550cb # v1.1.0
  43. if: steps.changes.outputs.api_docs == 'true'
  44. - name: Build OpenAPI Derefed JSON
  45. if: steps.changes.outputs.api_docs == 'true'
  46. # install ts-node for ts build scripts to execute properly without potentially installing
  47. # conflicting deps when running scripts locally
  48. # see: https://github.com/getsentry/sentry/pull/32328/files
  49. run: |
  50. yarn add ts-node && make build-api-docs
  51. - name: Copy artifact 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. - name: Git Commit & Push
  56. uses: stefanzweifel/git-auto-commit-action@0049e3fa4059ca715255fbbcb7dea4516f02ce0a # v4.15.3
  57. if: steps.changes.outputs.api_docs == 'true'
  58. with:
  59. repository: sentry-api-schema
  60. branch: main
  61. commit_message: Generated
  62. commit_user_email: bot@getsentry.com
  63. commit_user_name: openapi-getsentry-bot