Update .gitea/workflows/renovate.yaml
This commit is contained in:
parent
ab242fb0e6
commit
2b469d47c3
1 changed files with 80 additions and 77 deletions
|
@ -17,11 +17,9 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Renovate
|
- name: Install Renovate
|
||||||
uses: renovatebot/github-action@v39.221.0
|
run: |
|
||||||
with:
|
npm install -g renovate
|
||||||
configurationFile: config.js
|
|
||||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Discover Repositories
|
- name: Discover Repositories
|
||||||
run: |
|
run: |
|
||||||
|
@ -35,7 +33,6 @@ jobs:
|
||||||
|
|
||||||
- name: Create Repository Batches
|
- name: Create Repository Batches
|
||||||
id: create-batches
|
id: create-batches
|
||||||
shell: bash
|
|
||||||
run: |
|
run: |
|
||||||
if [ ! -f renovate-repos.json ] || [ ! -s renovate-repos.json ]; then
|
if [ ! -f renovate-repos.json ] || [ ! -s renovate-repos.json ]; then
|
||||||
echo "No repositories discovered or file not created"
|
echo "No repositories discovered or file not created"
|
||||||
|
@ -43,33 +40,54 @@ jobs:
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Read repositories and create batches of 5
|
# Install jq if not available
|
||||||
REPOS=$(cat renovate-repos.json)
|
if ! command -v jq &> /dev/null; then
|
||||||
|
sudo apt-get update && sudo apt-get install -y jq
|
||||||
|
fi
|
||||||
|
|
||||||
# Use Python (available in GitHub Actions runner) for JSON processing
|
# Check if file contains valid JSON
|
||||||
BATCHES=$(python3 -c '
|
if ! jq . renovate-repos.json > /dev/null 2>&1; then
|
||||||
import json
|
echo "File does not contain valid JSON"
|
||||||
import sys
|
echo "batches=[]" >> $GITHUB_OUTPUT
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
try:
|
# Create batches using shell commands
|
||||||
data = json.loads(sys.argv[1])
|
REPO_COUNT=$(jq '. | length' renovate-repos.json)
|
||||||
if not isinstance(data, list):
|
if [ "$REPO_COUNT" -eq 0 ]; then
|
||||||
print("[]")
|
echo "No repositories found"
|
||||||
sys.exit(0)
|
echo "batches=[]" >> $GITHUB_OUTPUT
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
# Create batches of 5
|
echo "Found $REPO_COUNT repositories"
|
||||||
batches = []
|
|
||||||
for i in range(0, len(data), 5):
|
|
||||||
batches.append(data[i:i+5])
|
|
||||||
|
|
||||||
print(json.dumps(batches))
|
# Create batches of 5 repos
|
||||||
except Exception as e:
|
BATCHES="["
|
||||||
print(f"Error: {e}", file=sys.stderr)
|
for i in $(seq 0 5 $((REPO_COUNT-1))); do
|
||||||
print("[]")
|
if [ "$i" -gt 0 ]; then
|
||||||
' "$REPOS")
|
BATCHES="$BATCHES,"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create a batch of up to 5 repos
|
||||||
|
BATCH="["
|
||||||
|
for j in $(seq 0 4); do
|
||||||
|
IDX=$((i+j))
|
||||||
|
if [ "$IDX" -lt "$REPO_COUNT" ]; then
|
||||||
|
if [ "$j" -gt 0 ]; then
|
||||||
|
BATCH="$BATCH,"
|
||||||
|
fi
|
||||||
|
REPO=$(jq -r ".[$IDX]" renovate-repos.json)
|
||||||
|
BATCH="$BATCH\"$REPO\""
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
BATCH="$BATCH]"
|
||||||
|
BATCHES="$BATCHES$BATCH"
|
||||||
|
done
|
||||||
|
BATCHES="$BATCHES]"
|
||||||
|
|
||||||
echo "Created batches: $BATCHES"
|
|
||||||
echo "batches=$BATCHES" >> $GITHUB_OUTPUT
|
echo "batches=$BATCHES" >> $GITHUB_OUTPUT
|
||||||
|
echo "Created $(echo "$BATCHES" | jq '. | length') batches"
|
||||||
|
|
||||||
renovate:
|
renovate:
|
||||||
name: Run Renovate
|
name: Run Renovate
|
||||||
|
@ -86,41 +104,39 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Renovate
|
- name: Install Renovate
|
||||||
uses: renovatebot/github-action@v39.221.0
|
run: |
|
||||||
with:
|
npm install -g renovate
|
||||||
configurationFile: config.js
|
|
||||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Cache Renovate dependencies
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: /tmp/renovate-cache
|
|
||||||
key: ${{ runner.os }}-renovate-batch-${{ github.run_id }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-renovate-
|
|
||||||
|
|
||||||
- name: Run Renovate on Batch
|
- name: Run Renovate on Batch
|
||||||
shell: bash
|
|
||||||
run: |
|
run: |
|
||||||
# Simple approach to create comma-separated list
|
# Convert batch to string and process safely
|
||||||
REPOS=""
|
BATCH='${{ toJson(matrix.batch) }}'
|
||||||
# Make sure batch is not empty
|
|
||||||
if [ -n "$BATCH" ] && [ "$BATCH" != "null" ]; then
|
|
||||||
# Convert JSON array to comma-separated string
|
|
||||||
REPOS=$(python3 -c '
|
|
||||||
import json
|
|
||||||
import sys
|
|
||||||
|
|
||||||
try:
|
# Check if batch is valid
|
||||||
batch = json.loads(sys.argv[1])
|
if [ "$BATCH" = "null" ] || [ "$BATCH" = "" ]; then
|
||||||
if isinstance(batch, list) and batch:
|
echo "Batch is empty or null"
|
||||||
print(",".join(batch))
|
exit 0
|
||||||
except Exception as e:
|
|
||||||
print(f"Error: {e}", file=sys.stderr)
|
|
||||||
' "$BATCH")
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Parse batch and run Renovate
|
||||||
|
REPOS=""
|
||||||
|
# Parse JSON array using bash
|
||||||
|
BATCH=${BATCH//\[/}
|
||||||
|
BATCH=${BATCH//\]/}
|
||||||
|
BATCH=${BATCH//\"/}
|
||||||
|
BATCH=${BATCH//,/ }
|
||||||
|
|
||||||
|
for REPO in $BATCH; do
|
||||||
|
if [ -n "$REPO" ]; then
|
||||||
|
if [ -n "$REPOS" ]; then
|
||||||
|
REPOS="$REPOS,$REPO"
|
||||||
|
else
|
||||||
|
REPOS="$REPO"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
if [ -n "$REPOS" ]; then
|
if [ -n "$REPOS" ]; then
|
||||||
echo "Processing repositories: $REPOS"
|
echo "Processing repositories: $REPOS"
|
||||||
renovate $REPOS
|
renovate $REPOS
|
||||||
|
@ -128,12 +144,10 @@ jobs:
|
||||||
echo "No repositories to process in this batch"
|
echo "No repositories to process in this batch"
|
||||||
fi
|
fi
|
||||||
env:
|
env:
|
||||||
BATCH: ${{ toJson(matrix.batch) }}
|
|
||||||
RENOVATE_CONFIG_FILE: "config.js"
|
RENOVATE_CONFIG_FILE: "config.js"
|
||||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
LOG_LEVEL: "info"
|
LOG_LEVEL: "info"
|
||||||
RENOVATE_CACHE_DIR: /tmp/renovate-cache
|
|
||||||
|
|
||||||
renovate-default:
|
renovate-default:
|
||||||
name: Run Renovate (Default)
|
name: Run Renovate (Default)
|
||||||
|
@ -145,26 +159,15 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Renovate
|
- name: Install Renovate
|
||||||
uses: renovatebot/github-action@v39.221.0
|
run: |
|
||||||
with:
|
npm install -g renovate
|
||||||
configurationFile: config.js
|
|
||||||
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
||||||
|
|
||||||
- name: Cache Renovate dependencies
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: /tmp/renovate-cache
|
|
||||||
key: ${{ runner.os }}-renovate-default-${{ hashFiles('config.js') }}-${{ github.run_id }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-renovate-default-${{ hashFiles('config.js') }}-
|
|
||||||
${{ runner.os }}-renovate-default-
|
|
||||||
|
|
||||||
- name: Run Renovate
|
- name: Run Renovate
|
||||||
run: renovate
|
run: |
|
||||||
|
renovate
|
||||||
env:
|
env:
|
||||||
RENOVATE_CONFIG_FILE: "config.js"
|
RENOVATE_CONFIG_FILE: "config.js"
|
||||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||||
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
LOG_LEVEL: "info"
|
LOG_LEVEL: "info"
|
||||||
RENOVATE_CACHE_DIR: /tmp/renovate-cache
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue