-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from mustafacantekir/adds-renovate-config-rem…
…oves-dependabot Adds renovate config removes dependabot, increases codecov action version
- Loading branch information
Showing
4 changed files
with
40 additions
and
12 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
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,13 @@ | ||
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,26 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"description": "Renovate configuration for little-cheesemonger", | ||
"extends": [ | ||
"config:base", | ||
":rebaseStalePrs", | ||
":gitSignOff", | ||
"schedule:earlyMondays" | ||
], | ||
"enabledManagers": [ | ||
"github-actions", | ||
"dockerfile", | ||
"pip_requirements", | ||
"poetry" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchPackageNames": "pip_requirements", | ||
"matchFiles": [ | ||
"requirements.txt", | ||
"requirements-test.txt" | ||
] | ||
} | ||
] | ||
} | ||
|