We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8905afa commit 4b4c9b7Copy full SHA for 4b4c9b7
.github/renovate.json
@@ -0,0 +1,6 @@
1
+{
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:base"
5
+ ]
6
+}
.github/workflows/renovate.yml
@@ -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 * * * *'
7
+ workflow_dispatch:
8
+
9
+jobs:
10
+ renovate:
11
+ permissions:
12
+ contents: read
13
+ id-token: write
14
+ pull-requests: write
15
+ issues: write
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
21
+ - name: Self-hosted Renovate
22
+ uses: renovatebot/github-action@v40.1.5
23
+ env:
24
+ RENOVATE_REPOSITORIES: '["${{ github.repository }}"]'
25
+ with:
26
+ token: '${{ secrets.GITHUB_TOKEN }}'
0 commit comments