Skip to content

Commit

Permalink
Merge pull request #56 from HHS/nightly-build
Browse files Browse the repository at this point in the history
Add a nightly scheduled CI run
  • Loading branch information
rahearn authored Oct 30, 2020
2 parents 5d9976a + 3eefefd commit 1ce53c2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,3 +345,22 @@ workflows:
- << pipeline.parameters.dev_git_branch >>
- << pipeline.parameters.staging_git_branch >>
- << pipeline.parameters.prod_git_branch >>

nightly:
triggers:
- schedule:
cron: "0 13 * * *"
filters:
branches:
only:
- << pipeline.parameters.dev_git_branch >>
- << pipeline.parameters.staging_git_branch >>
- << pipeline.parameters.prod_git_branch >>
jobs:
- build
- lint_audit:
requires:
- build
- dynamic_security_scan:
requires:
- build

0 comments on commit 1ce53c2

Please sign in to comment.