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 ad75feb
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@
name: CI

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

on: # yamllint disable-line rule:truthy

Check warning on line 13 in .github/workflows/ci.yaml

View workflow job for this annotation

GitHub Actions / Linters

13:5 [comments] too few spaces before comment
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

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

0 comments on commit ad75feb

Please sign in to comment.