openapi.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. id: setup
  35. - name: Checkout getsentry/sentry-api-schema
  36. if: steps.changes.outputs.api_docs == 'true'
  37. uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
  38. with:
  39. ref: 'main'
  40. repository: getsentry/sentry-api-schema
  41. path: sentry-api-schema
  42. token: ${{ steps.getsentry.outputs.token }}
  43. - uses: getsentry/action-setup-volta@54775a59c41065f54ecc76d1dd5f2cdc7a1550cb # v1.1.0
  44. if: steps.changes.outputs.api_docs == 'true'
  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: Copy artifact into getsentry/sentry-api-schema
  53. if: steps.changes.outputs.api_docs == 'true'
  54. run: |
  55. cp tests/apidocs/openapi-derefed.json sentry-api-schema
  56. - name: Git Commit & Push
  57. uses: stefanzweifel/git-auto-commit-action@0049e3fa4059ca715255fbbcb7dea4516f02ce0a # v4.15.3
  58. if: steps.changes.outputs.api_docs == 'true'
  59. with:
  60. repository: sentry-api-schema
  61. branch: main
  62. commit_message: Generated
  63. commit_user_email: bot@getsentry.com
  64. commit_user_name: openapi-getsentry-bot