generated from wayfair-incubator/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9cc2040
commit 3c059c5
Showing
5 changed files
with
85 additions
and
29 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,23 @@ | ||
name: Lint | ||
|
||
on: ["push", "pull_request"] | ||
|
||
jobs: | ||
markdown: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: 🧼 lint markdown files | ||
uses: avto-dev/markdown-lint@v1 | ||
with: | ||
config: '.markdownlint.json' | ||
args: '**/*.md .github/**/*.md' | ||
|
||
renovate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: 🧼 lint renovate config | ||
uses: suzuki-shunsuke/[email protected] | ||
with: | ||
config_file_path: 'renovate.json' |
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
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,61 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"description": "Renovate configuration for Gossip", | ||
"labels": [ | ||
"dependencies", | ||
"renovate" | ||
], | ||
"extends": [ | ||
"config:base" | ||
], | ||
"schedule": [ | ||
"before 9am on Monday" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchManagers": [ | ||
"github-actions" | ||
], | ||
"groupName": "GitHub Actions", | ||
"addLabels": [ | ||
"actions" | ||
] | ||
}, | ||
{ | ||
"matchManagers": [ | ||
"docker-compose" | ||
], | ||
"groupName": "Docker", | ||
"addLabels": [ | ||
"docker" | ||
] | ||
}, | ||
{ | ||
"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" | ||
} | ||
] | ||
} |