-
Notifications
You must be signed in to change notification settings - Fork 211
Add Renovate bot #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
thiagolunardi
wants to merge
25
commits into
main
Choose a base branch
from
feat/add-renovate
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Add Renovate bot #46
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
f192e3e
docs: update README for clarity and formatting improvements
thiagolunardi 45e405c
feat: add Renovate configuration files for automated dependency manag…
thiagolunardi ccfb36b
feat: enable manual triggering for Renovate workflow
thiagolunardi 0027710
feat: update Renovate schedule to run at specific times
thiagolunardi 8b4e0dd
docs: correct typo in README regarding Docker command
thiagolunardi 3492696
feat: remove scheduled cron job from Renovate configuration
thiagolunardi 1a11f86
feat: add cron schedule for Renovate to run at specified times
thiagolunardi 2d384e9
feat: add repository configuration for Renovate
thiagolunardi d94bd3e
feat: enable fork processing in Renovate configuration
thiagolunardi 67724b2
feat: update Renovate configuration for onboarding and release age
thiagolunardi 8eb0536
feat: set requireConfig to optional in Renovate configuration
thiagolunardi 9096dea
feat: set debug log level in Renovate configuration
thiagolunardi 5283c55
feat: specify configuration file for Renovate action
thiagolunardi 4565b83
feat: add repositories configuration for Renovate
thiagolunardi 0a5f5af
feat: update gitAuthor format in Renovate configuration
thiagolunardi 0d3c384
feat: enhance package rules for Renovate configuration
thiagolunardi e394222
feat: update Renovate configuration for username and gitAuthor, and r…
thiagolunardi e0081f2
feat: reduce minimum release age for Microsoft NuGet Packages in Reno…
thiagolunardi 1c96528
feat: add repository configuration for Renovate
thiagolunardi 60c3873
feat: update Renovate schedule to run at 6am GMT every Monday
thiagolunardi 6557cf3
feat: add dotnet-sdk to package inclusion and exclusion rules in Reno…
thiagolunardi 0ab0bf1
feat: change Renovate log level from debug to info
thiagolunardi 8e00caa
feat: update Renovate configuration to use regex for package matching…
thiagolunardi fae62af
feat: add package pattern matching to Renovate configuration
thiagolunardi 682c6c3
feat: change Renovate log level from info to debug
thiagolunardi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,47 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"branchPrefix": "renovate/", | ||
"username": "renovate-release", | ||
"gitAuthor": "Renovate Bot <[email protected]>", | ||
"platform": "github", | ||
"onboarding": false, | ||
"requireConfig": "optional", | ||
"forkProcessing": "enabled", | ||
"repositories": [ | ||
"desenvolvedor-io/dev-store" | ||
], | ||
"enabledManagers": [ | ||
"nuget" | ||
], | ||
"packageRules": [ | ||
{ | ||
"groupName": "Microsoft NuGet Packages", | ||
"matchManagers": [ | ||
"nuget" | ||
], | ||
"matchPackagePatterns": [ | ||
"^dotnet-sdk$", | ||
"^AspNetCore\\..*", | ||
"^Microsoft\\..*", | ||
"^System\\..*" | ||
], | ||
"minimumReleaseAge": "2 days" | ||
}, | ||
{ | ||
"groupName": "External NuGet Packages", | ||
"matchManagers": [ | ||
"nuget" | ||
], | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"excludePackagePatterns": [ | ||
"^dotnet-sdk$", | ||
"^AspNetCore\\..*", | ||
"^Microsoft\\..*", | ||
"^System\\..*" | ||
], | ||
"minimumReleaseAge": "7 days" | ||
} | ||
] | ||
} |
This file contains hidden or 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,24 @@ | ||
name: Renovate | ||
on: | ||
schedule: | ||
- cron: '0 6 * * 1' # Runs at 6am (GMT) every Monday | ||
push: | ||
branches: | ||
- feat/add-renovate | ||
workflow_dispatch: | ||
|
||
jobs: | ||
renovate: | ||
runs-on: ubuntu-latest | ||
env: | ||
LOG_LEVEL: debug | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Self-hosted Renovate | ||
uses: renovatebot/[email protected] | ||
with: | ||
configurationFile: '.github/renovate.json' | ||
token: ${{ secrets.RENOVATE_TOKEN }} |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.