-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
impr: SEC-1370 Update dependabot config
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Author: daniel_moore@trendmicro.com | ||
# Purpose: Enables dependabot to raise pull requests to update | ||
# out of date dependencies. | ||
# | ||
# A maximum of 5 pull requests will be raised for a given repository | ||
# at any one time. | ||
version: 2 | ||
registries: | ||
# Allows dependabot to access @conformity/* private npm | ||
# packages. | ||
npm-github: | ||
type: npm-registry | ||
url: https://jfrog.trendmicro.com/artifactory/api/npm/conformity-npm_virtual/ | ||
# The workflow token is configured at the org level as was created under | ||
# service-cloudconformity account. The token is stored in 1password. | ||
token: ${{secrets.ARTIFACTORY_TOKEN_PREPARED}} | ||
updates: | ||
- package-ecosystem: "npm" | ||
# Assign to anyone in dev team. Someone responsible for the repo should check | ||
# and merge the pull request. | ||
reviewers: | ||
- cloudconformity/developers | ||
# Ignore all semver major updates as these need special consideration | ||
# when performing updates due to breaking changes. | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: | ||
- version-update:semver-major | ||
registries: | ||
- npm-github | ||
directory: "/" | ||
open-pull-requests-limit: 0 | ||
schedule: | ||
interval: "daily" | ||
# prefix commits and PR titles with dependabot so they're easily identifiable and | ||
# so commitlint can ignore the misssing ticket. | ||
commit-message: | ||
include: scope | ||
prefix: "dependabot" | ||
prefix-development: "dependabot" |