I am encountering an issue with my Dependabot.yml file. When adding the following conditions under the ignore section:
package is gradle.
can’t find the way to write ignore part on the official site.
does anyone have the same issue or know how to fix this?
ignore:
- dependency-name: "*"
versions:
- "*-alpha*"
- "*-beta*"
- "*-rc*"
- "*-SNAPSHOT*"
I receive the error: invalid version requirements for a gradle ignore condition.
change the code couple times.
ignore:
- dependency-name: ‘‘
versions: [‘.-alpha‘,’.-beta*’,’.-rc*’,’.-SNAPSHOT*’]
New contributor
jydayo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.