-
Notifications
You must be signed in to change notification settings - Fork 6
38 lines (32 loc) · 910 Bytes
/
Copy pathrenovate.yml
File metadata and controls
38 lines (32 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Renovate
on:
workflow_dispatch:
schedule:
- cron: "17 10 * * *"
permissions:
contents: write
pull-requests: write
issues: write
actions: read
concurrency:
group: renovate
cancel-in-progress: false
jobs:
renovate:
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v20
- name: Run Renovate
env:
LOG_LEVEL: info
RENOVATE_PLATFORM: github
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN || github.token }}
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_TOKEN || github.token }}
RENOVATE_ALLOWED_COMMANDS: '["^nix run \\.#renovate-update-nix-hashes$"]'
run: nix run nixpkgs#renovate