We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77ee9ab commit e2db801Copy full SHA for e2db801
.github/workflows/renovate.yml
@@ -0,0 +1,18 @@
1
+name: Renovate
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * *' # Run daily at midnight
6
7
+jobs:
8
+ renovate:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v2
14
15
+ - name: Set up Renovate
16
+ run: |
17
+ npm install -g renovate
18
+ renovate --config renovate.json
renovate.json
@@ -0,0 +1,11 @@
+{
+ "extends": ["config:base"],
+ "packageRules": [
+ {
+ "packagePatterns": ["^github-actions/"],
+ "groupName": "GitHub Actions",
+ "schedule": ["daily"]
+ }
+ ]
0 commit comments