cfg/.config/sanity.d/has-funding.sh

9 lines
164 B
Bash
Raw Normal View History

function sanity_has_funding() {
[[ -f .github/FUNDING.yml ]] || {
report warn "No FUNDING.yml config found"
return 0
}
report success "FUNDING.yml found"
}