From 818f4dfdae0a67696e92f84a13b731493d4c1bed Mon Sep 17 00:00:00 2001 From: official-Cromatin Date: Wed, 8 Oct 2025 15:51:45 +0200 Subject: [PATCH] Remove renovate workflow --- .github/renovate-entrypoint.sh | 13 ------------- .github/workflows/renovate.yml | 33 --------------------------------- 2 files changed, 46 deletions(-) delete mode 100644 .github/renovate-entrypoint.sh delete mode 100644 .github/workflows/renovate.yml diff --git a/.github/renovate-entrypoint.sh b/.github/renovate-entrypoint.sh deleted file mode 100644 index 6820a24..0000000 --- a/.github/renovate-entrypoint.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -set -euo pipefail - -echo "=== Starting Renovate Bot ===" - -cd /github/workspace - -apt update -apt install -y build-essential libpq-dev - -runuser -u ubuntu -- renovate --platform=github - -echo "=== Renovate Bot finished ===" diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml deleted file mode 100644 index f705a65..0000000 --- a/.github/workflows/renovate.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Renovate - -on: - workflow_dispatch: - schedule: - - cron: '0 2 * * 1' - -permissions: - contents: write - pull-requests: write - -jobs: - renovate: - runs-on: self-hosted - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: '20' - - - name: Install Renovate - run: npm install -g renovate - - - name: Run Renovate - env: - RENOVATE_TOKEN: ${{ secrets.GITHUB_TOKEN }} - LOG_LEVEL: debug - run: | - cd ${{ github.workspace }} - renovate --platform=github --repositories "${{ github.repository }}"