generated from wayfair-incubator/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Renovate * update lint.yml * update config schedule * add packageRules * remove docker group Co-authored-by: Jiayuan Chen <[email protected]>
- Loading branch information
Showing
3 changed files
with
60 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
name: Renovate Config Linting | ||
on: [pull_request] | ||
|
||
jobs: | ||
renovate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: 🧼 lint renovate config # Validates changes to renovate.json config file | ||
uses: suzuki-shunsuke/[email protected] | ||
with: | ||
config_file_path: 'renovate.json' |
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,48 @@ | ||
{ | ||
"$schema": "https://docs.renovatdebot.com/renovate-schema.json", | ||
"description": "Renovate configuration for WAYSON", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"schedule": [ | ||
"before 9am on Monday" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchManagers": [ | ||
"github-actions" | ||
], | ||
"groupName": "GitHub Actions", | ||
"addLabels": [ | ||
"actions" | ||
] | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"nuget" | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch" | ||
], | ||
"addLabels": [ | ||
"non-breaking", | ||
"cut new release" | ||
], | ||
"groupName": "NuGet Packages - Minor Updates" | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"nuget" | ||
], | ||
"matchUpdateTypes": [ | ||
"major" | ||
], | ||
"addLabels": [ | ||
"breaking", | ||
"cut new release" | ||
], | ||
"groupName": "NuGet Packages - Major Updates" | ||
} | ||
] | ||
} |