Skip to content

Commit 1a562ab

Browse files
committedMar 16, 2024
add renovate github action
1 parent 8905afa commit 1a562ab

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
 

‎.github/workflows/renovate.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Renovate
2+
on:
3+
schedule:
4+
# The "*" (#42, asterisk) character has special semantics in YAML, so this
5+
# string has to be quoted.
6+
- cron: '0/15 * * * *'
7+
workflow_dispatch:
8+
9+
jobs:
10+
renovate:
11+
permissions:
12+
contents: read
13+
id-token: write
14+
pull-requests: write
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Self-hosted Renovate
21+
uses: renovatebot/github-action@v40.1.5
22+
with:
23+
token: '${{ secrets.GITHUB_TOKEN }}'

0 commit comments

Comments
 (0)
Failed to load comments.