Skip to content

Commit

Permalink
ci: ignore minor and patch updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhall88 committed Nov 22, 2024
1 parent 370cd73 commit 45ec0d5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,13 @@ updates:
- package-ecosystem: cargo
directory: /
schedule:
interval: weekly
interval: weekly
ignore:
- dependency-name: "*"
# patch and minor updates don't matter for libraries as consumers of this library build
# with their own lockfile, rather than the version specified in this library's lockfile
# remove this ignore rule if your package has binaries to ensure that the binaries are
# built with the exact set of dependencies and those are up to date.
update-types:
- "version-update:semver-patch"
- "version-update:semver-minor"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# LRGE

[![check](https://github.com/mbhall88/lrge/actions/workflows/check.yml/badge.svg)](https://github.com/mbhall88/lrge/actions/workflows/check.yml)
1 change: 1 addition & 0 deletions liblrge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
![docs.rs](https://img.shields.io/docsrs/liblrge)
![Crates.io Version](https://img.shields.io/crates/v/liblrge)
![Crates.io Total Downloads](https://img.shields.io/crates/d/liblrge)
[![check](https://github.com/mbhall88/lrge/actions/workflows/check.yml/badge.svg)](https://github.com/mbhall88/lrge/actions/workflows/check.yml)

This is a Rust library for estimating genome size from long read overlaps. The library is used by the `lrge` command
line tool documented in the [root of this repository](https://www.github.com/mbhall88/lrge).
Expand Down

0 comments on commit 45ec0d5

Please sign in to comment.