Skip to content

Commit

Permalink
👷add renovate github action
Browse files Browse the repository at this point in the history
  • Loading branch information
a-cordier committed Mar 5, 2024
1 parent a518d62 commit 53c2ab3
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/renovate.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
username: 'renovate',
gitAuthor: 'Renovate Bot <[email protected]>',
onboarding: false,
platform: 'github',
includeForks: true,
dryRun: 'full',
//repositories: ['a-cordier/wasm-audio', 'a-cordier/noon-io'],
autoDiscover: true,
packageRules: [
{
description: 'lockFileMaintenance',
matchUpdateTypes: [
'pin',
'digest',
'patch',
'minor',
'major',
'lockFileMaintenance',
],
dependencyDashboardApproval: false,
stabilityDays: 0,
},
],
};
17 changes: 17 additions & 0 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Renovate
on:
schedule:
# The "*" (#42, asterisk) character has special semantics in YAML, so this
# string has to be quoted.
- cron: '0/5 * * * *'
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
configurationFile: .github/renovate.config.js
token: ${{ secrets.RENOVATE_TOKEN }}

0 comments on commit 53c2ab3

Please sign in to comment.