Update .gitea/workflows/renovate.yaml #36
1 changed files with 100 additions and 31 deletions
|
@ -8,40 +8,109 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
renovate:
|
renovate:
|
||||||
|
name: Renovate with Batching
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# Pin to a specific Renovate version for stability (check ghcr.io for latest)
|
|
||||||
# Example: ghcr.io/renovatebot/renovate:37.250.0
|
|
||||||
container: ghcr.io/renovatebot/renovate:39.219.2 # Pinned version
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Checkout the repository containing config.js
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
# Cache Renovate's dependency cache directory between runs
|
- name: Install Renovate and Dependencies
|
||||||
- name: Cache Renovate dependencies
|
run: |
|
||||||
uses: actions/cache@v4
|
npm install -g renovate
|
||||||
with:
|
if ! command -v jq &> /dev/null; then
|
||||||
path: /tmp/renovate-cache # Renovate's default cache directory
|
sudo apt-get update && sudo apt-get install -y jq
|
||||||
# Key based on OS, config file hash, and run ID (ensures save)
|
fi
|
||||||
key: ${{ runner.os }}-renovate-${{ hashFiles('config.js') }}-${{ github.run_id }}
|
|
||||||
# Fallback keys for restoring from previous runs
|
- name: Debug Environment
|
||||||
restore-keys: |
|
run: |
|
||||||
${{ runner.os }}-renovate-${{ hashFiles('config.js') }}-
|
echo "Node version: $(node --version)"
|
||||||
${{ runner.os }}-renovate-
|
echo "NPM version: $(npm --version)"
|
||||||
|
echo "JQ version: $(jq --version)"
|
||||||
# Run Renovate using the configuration file
|
echo "Current directory: $(pwd)"
|
||||||
- name: Run Renovate
|
ls -la
|
||||||
run: renovate
|
echo "Config file contents:"
|
||||||
|
if [ -f "config.js" ]; then
|
||||||
|
cat config.js
|
||||||
|
else
|
||||||
|
echo "Config file not found!"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Discover Repositories
|
||||||
|
id: discover
|
||||||
|
run: |
|
||||||
|
echo "Starting repository discovery..."
|
||||||
|
renovate --write-discovered-repos=renovate-repos.json
|
||||||
|
|
||||||
|
if [ -f renovate-repos.json ]; then
|
||||||
|
echo "Repository discovery results:"
|
||||||
|
cat renovate-repos.json
|
||||||
|
|
||||||
|
if jq . renovate-repos.json > /dev/null 2>&1; then
|
||||||
|
echo "Valid JSON file found"
|
||||||
|
REPO_COUNT=$(jq '. | length' renovate-repos.json)
|
||||||
|
echo "Found $REPO_COUNT repositories"
|
||||||
|
|
||||||
|
if [ "$REPO_COUNT" -gt 0 ]; then
|
||||||
|
# Create list of all repos for processing
|
||||||
|
ALL_REPOS=$(jq -r '. | join(",")' renovate-repos.json)
|
||||||
|
echo "all_repos=$ALL_REPOS" >> $GITHUB_OUTPUT
|
||||||
|
echo "All repositories: $ALL_REPOS"
|
||||||
|
else
|
||||||
|
echo "No repositories found in autodiscovery"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Invalid JSON in renovate-repos.json"
|
||||||
|
cat renovate-repos.json
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "No repository discovery results file created"
|
||||||
|
fi
|
||||||
env:
|
env:
|
||||||
# --- Core Configuration ---
|
RENOVATE_CONFIG_FILE: "config.js"
|
||||||
RENOVATE_CONFIG_FILE: "config.js" # Path to your config file
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # Token for Gitea
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }} # Only needed if Renovate MUST access github.com (e.g., for release notes). Remove if not needed.
|
LOG_LEVEL: "debug" # Set to debug for more information
|
||||||
|
RENOVATE_AUTODISCOVER: "true"
|
||||||
# --- Performance & Logging ---
|
|
||||||
# Use 'info' for normal runs, 'debug' only when troubleshooting
|
- name: Process All Repositories
|
||||||
|
if: steps.discover.outputs.all_repos != ''
|
||||||
|
run: |
|
||||||
|
ALL_REPOS="${{ steps.discover.outputs.all_repos }}"
|
||||||
|
echo "Processing all repositories: $ALL_REPOS"
|
||||||
|
|
||||||
|
# Process in batches of 5
|
||||||
|
IFS=',' read -ra REPO_ARRAY <<< "$ALL_REPOS"
|
||||||
|
|
||||||
|
TOTAL=${#REPO_ARRAY[@]}
|
||||||
|
echo "Total repositories to process: $TOTAL"
|
||||||
|
|
||||||
|
for ((i=0; i<TOTAL; i+=5)); do
|
||||||
|
BATCH=""
|
||||||
|
for ((j=i; j<i+5 && j<TOTAL; j++)); do
|
||||||
|
if [ -n "$BATCH" ]; then
|
||||||
|
BATCH="$BATCH,${REPO_ARRAY[$j]}"
|
||||||
|
else
|
||||||
|
BATCH="${REPO_ARRAY[$j]}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Processing batch $((i/5+1)): $BATCH"
|
||||||
|
renovate $BATCH
|
||||||
|
done
|
||||||
|
env:
|
||||||
|
RENOVATE_CONFIG_FILE: "config.js"
|
||||||
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
|
LOG_LEVEL: "info"
|
||||||
|
|
||||||
|
- name: Run Default Renovate
|
||||||
|
if: steps.discover.outputs.all_repos == ''
|
||||||
|
run: |
|
||||||
|
echo "No repositories discovered, running default renovate"
|
||||||
|
renovate
|
||||||
|
env:
|
||||||
|
RENOVATE_CONFIG_FILE: "config.js"
|
||||||
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
LOG_LEVEL: "info"
|
LOG_LEVEL: "info"
|
||||||
# Explicitly tell Renovate where the cache is (matches actions/cache path)
|
|
||||||
RENOVATE_CACHE_DIR: /tmp/renovate-cache
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue