Skip to content

Commit

Permalink
Run GitHub Actions continuously
Browse files Browse the repository at this point in the history
Summary:
Schedule test runs every 2 hours, starting at 30 minutes past the hour.
Under heavy load, builds may be gracefully delayed or skipped, so
having too short of an interval shouldn't cause any disruptions.

Differential Revision: D61042384
  • Loading branch information
Matt Blagden authored and facebook-github-bot committed Aug 12, 2024
1 parent 14248a5 commit 5972035
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
pull_request:
branches:
- main
schedule:
- cron: '30 */2 * * *'

jobs:
android:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5972035

Please sign in to comment.