Skip to content

Commit

Permalink
add renovate github action
Browse files Browse the repository at this point in the history
  • Loading branch information
taraspos committed Mar 16, 2024
1 parent 8905afa commit 4b4c9b7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}
26 changes: 26 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Renovate
on:
schedule:
# The "*" (#42, asterisk) character has special semantics in YAML, so this
# string has to be quoted.
- cron: '15 * * * *'
workflow_dispatch:

jobs:
renovate:
permissions:
contents: read
id-token: write
pull-requests: write
issues: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Self-hosted Renovate
uses: renovatebot/[email protected]
env:
RENOVATE_REPOSITORIES: '["${{ github.repository }}"]'
with:
token: '${{ secrets.GITHUB_TOKEN }}'

0 comments on commit 4b4c9b7

Please sign in to comment.