Skip to content

Commit

Permalink
CI: Add nightly build
Browse files Browse the repository at this point in the history
Build master every night to detect early issues in tools and packages we
depend on.

Without this if some tool or package add incompatible change we detect
the issue only when someone post a PR, and it is not clear if the issue
is caused by the PR or by the system.

Fixes: RamenDR#566
Signed-off-by: Shwetha K Acharya <sacharya@redhat.com>
  • Loading branch information
Shwetha-Acharya committed Jul 13, 2023
1 parent 2665807 commit dea585f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@
name: CI

# This workflow will run when developer push a topic branch to their
# fork in github, minimizing noise for maintainers.
# fork in github, minimizing noise for maintainers. This
# workflow also runs on nightly basis at 12:00 AM (00:00 UTC)

on: # yamllint disable-line rule:truthy
- push
- pull_request
push:
pull_request:
schedule:
- cron: '0 0 * * *'

env:
# Values can be overriden by repository variables.
Expand Down

0 comments on commit dea585f

Please sign in to comment.