file-filters.yml 704 B

1234567891011121314151617181920212223
  1. # This is used by the action https://github.com/dorny/paths-filter (which we have forked to https://github.com/getsentry/paths-filter)
  2. # TODO: There are some meta files that we potentially could ignore for both front/backend,
  3. # as well as some configuration files that should trigger both
  4. frontend:
  5. - '**/*.[tj]{s,sx}'
  6. - '**/*.less'
  7. - '**/tsconfig*.json'
  8. - 'yarn.lock'
  9. - '{package,now,vercel}.json'
  10. - '.eslint*'
  11. - 'docs-ui/**'
  12. - 'src/sentry/static/sentry/**'
  13. - 'tests/js/**'
  14. - '.github/workflows/javascript*.yml'
  15. backend:
  16. - '**/*.py'
  17. - 'src/sentry/!(static)/**'
  18. - 'requirements-*.txt'
  19. - 'migrations_lockfile.txt'
  20. - '.python-version'
  21. - '.github/workflows/!(javascript*)'