Skip to content

Commit

Permalink
Merge pull request #428 from samvera-labs/scheduled_builds
Browse files Browse the repository at this point in the history
Schedule a build to run every night.
  • Loading branch information
Trey Pendragon authored Apr 13, 2018
2 parents c0d8456 + 9a3439e commit 20fc3fd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions circle.yml → .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
version: 2
jobs:
build:
Expand Down Expand Up @@ -28,3 +29,18 @@ jobs:
- run:
name: Run Specs
command: bundle exec rake docker:spec
workflows:
version: 2
build:
jobs:
- build
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only:
- master
jobs:
- build

0 comments on commit 20fc3fd

Please sign in to comment.