-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update workflows group (#19)
Co-authored-by: Joss Whittle <[email protected]>
- Loading branch information
1 parent
3c2a3e1
commit 2c3069d
Showing
9 changed files
with
90 additions
and
102 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,2 @@ | ||
* @JossWhittle | ||
.github/ @SwanseaUniversityMedical/devops-maintainers |
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,48 @@ | ||
module.exports = { | ||
|
||
// Uncomment dryRun to test exotic config options without spamming dozens of | ||
// pull requests onto a repo that you would then need to clean up... | ||
//dryRun: "full", | ||
|
||
// Inherit default config options | ||
extends: ["config:base"], | ||
configMigration: true, | ||
|
||
// Force use of Conventional Commit messages to avoid Renovate not detecting them | ||
semanticCommits: "enabled", | ||
|
||
// Disable limits on the number of pull requests that can be managed simultaneously | ||
// since this can sometimes prevent security patches being suggested! | ||
prHourlyLimit: 0, | ||
prConcurrentLimit: 0, | ||
|
||
// Tell Renovate to re-create or rebase old pull requests when new commits have | ||
// since been merged into main... | ||
rebaseWhen: "behind-base-branch", | ||
|
||
// Set the default schedule for when pull requests will be created or updated. | ||
// If Renovate is run outside of this schedule then it will skip updating pull | ||
// requests for dependencies unless they override the schedule. | ||
updateNotScheduled: false, | ||
timezone: "Europe/London", | ||
schedule: [ | ||
"after 10pm", | ||
"before 5am" | ||
], | ||
|
||
// This setting helps handle breaking changes to Renovate bot when its version changes. | ||
ignorePrAuthor: true, | ||
|
||
// Automatically assign reviewers to pull requests based on who "owns" the source files | ||
// that need to be updated as listed in the CODEOWNERS file in the project repo. | ||
reviewersFromCodeOwners: true, | ||
|
||
// Auto discovery is dangerous, never blindly trust the scope of the token! | ||
autodiscover: false, | ||
// Instead, explicitly list the repos that we should manage pull requests on. | ||
// This should realistically only be one repo, the project repo you are currently in. | ||
// The default token "should" only have access to this repo... | ||
repositories: [ | ||
"SwanseaUniversityMedical/Guacamole", | ||
], | ||
}; |
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
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 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: Renovate | ||
on: | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: [renovate] | ||
schedule: | ||
- cron: '0 * * * *' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }} | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
renovate: | ||
runs-on: | ||
labels: [ self-hosted, linux, x64 ] | ||
group: heavy | ||
|
||
steps: | ||
- uses: SwanseaUniversityMedical/workflows/.github/actions/[email protected] | ||
with: | ||
token: ${{ secrets.RENOVATE_TOKEN }} | ||
config: '.github/renovate.js' |
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,3 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json" | ||
} |