bootstrap.yml 534 B

1234567891011121314151617
  1. name: bootstrap
  2. on:
  3. schedule:
  4. # Run on Mondays in hopes to fix things before new engineers run the script
  5. # It's far more likely that somethings regresses because there's new software released than
  6. # by our code changes regressing it
  7. - cron: '0 3 * * 1'
  8. jobs:
  9. bootstrap-script:
  10. name: bootstrap
  11. runs-on: macos-13
  12. timeout-minutes: 30
  13. steps:
  14. - name: Run bootstrap scripts
  15. run: |
  16. bash <(curl -s https://raw.githubusercontent.com/getsentry/bootstrap-sentry/master/bootstrap.sh)