mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2026-04-01 08:55:36 +02:00
37 lines
1002 B
YAML
37 lines
1002 B
YAML
name: Renovate
|
|
on:
|
|
schedule:
|
|
- cron: "0 20 * * 0"
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
jobs:
|
|
renovate-a-m:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: renovatebot/github-action@v44.2.5
|
|
with:
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
env:
|
|
RENOVATE_REPOSITORIES: ${{ github.repository }}
|
|
LOG_LEVEL: info
|
|
NODE_OPTIONS: "--max-old-space-size=4096"
|
|
RENOVATE_WORKERS: 1
|
|
RENOVATE_INCLUDE_PATHS: "examples/[a-mA-M]**"
|
|
|
|
renovate-n-z:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: renovatebot/github-action@v44.2.5
|
|
with:
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
env:
|
|
RENOVATE_REPOSITORIES: ${{ github.repository }}
|
|
LOG_LEVEL: info
|
|
NODE_OPTIONS: "--max-old-space-size=4096"
|
|
RENOVATE_WORKERS: 1
|
|
RENOVATE_INCLUDE_PATHS: "examples/[n-zN-Z]**"
|