We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e097b88 commit 2cc670dCopy full SHA for 2cc670d
.github/workflows/renovate.yml
@@ -0,0 +1,26 @@
1
+name: Renovate
2
+on:
3
+ schedule:
4
+ # Run every Monday at 2:00 AM
5
+ - cron: '0 2 * * 1'
6
+ workflow_dispatch: # Allow manual triggering
7
+
8
+jobs:
9
+ renovate:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: write
13
+ pull-requests: write
14
+ issues: write
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Self-hosted Renovate
20
+ uses: renovatebot/github-action@v39.0.5
21
+ with:
22
+ token: ${{ secrets.RENOVATE_TOKEN }}
23
+ configurationFile: .renovate.json
24
+ env:
25
+ LOG_LEVEL: 'info'
26
+ RENOVATE_REPOSITORIES: ${{ github.repository }}
renovate.json .renovate.jsonrenovate.json renamed to .renovate.json
0 commit comments