mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 02:23:39 -05:00
9db632f0e1
- Check if the PR contains a single commit, and fail otherwise. - Enable commitlint to check if commits adhere to the conventialcommits.org spec. - Update the the pull request template to point to the conventional commit spec. - Update the dependabot configuration to add the "build(...)" prefix to commits.
84 lines
2.1 KiB
YAML
84 lines
2.1 KiB
YAML
---
|
|
#################################
|
|
# GitHub Dependabot Config info #
|
|
#################################
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: github-actions
|
|
commit-message:
|
|
prefix: "build(github-actions)"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
|
|
# Maintain dependencies for js with npm
|
|
- package-ecosystem: "npm"
|
|
commit-message:
|
|
prefix: "build(npm)"
|
|
directory: "/dependencies"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
|
|
# Maintain dependencies for ruby with bundler
|
|
- package-ecosystem: "bundler"
|
|
commit-message:
|
|
prefix: "build(bundler)"
|
|
directory: "/dependencies"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
|
|
# Maintain dependencies for docker
|
|
- package-ecosystem: "docker"
|
|
commit-message:
|
|
prefix: "build(docker)"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
|
|
# Maintain dependencies for python with pip
|
|
- package-ecosystem: "pip"
|
|
commit-message:
|
|
prefix: "build(python)"
|
|
directory: "/dependencies/python/"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
|
|
# Maintain dependencies for Java
|
|
- package-ecosystem: "gradle"
|
|
commit-message:
|
|
prefix: "build(java)"
|
|
directory: "/dependencies/checkstyle"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
|
|
- package-ecosystem: "gradle"
|
|
commit-message:
|
|
prefix: "build(java)"
|
|
directory: "/dependencies/google-java-format"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
|
|
# Maintain dev dependencies for docker
|
|
- package-ecosystem: "docker"
|
|
commit-message:
|
|
prefix: "build(dev-docker)"
|
|
directory: "/dev-dependencies"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|
|
|
|
# Maintain dev dependencies for js with npm
|
|
- package-ecosystem: "npm"
|
|
commit-message:
|
|
prefix: "build(dev-npm)"
|
|
directory: "/dev-dependencies"
|
|
schedule:
|
|
interval: "weekly"
|
|
open-pull-requests-limit: 10
|