Remove renovate workflow and integrate docker build #10

Merged
official-Cromatin merged 7 commits from feat-vscode-tasks into main 2025-12-08 14:44:05 +01:00
2 changed files with 0 additions and 46 deletions
Showing only changes of commit 818f4dfdae - Show all commits
-13
View File
@@ -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 ==="
-33
View File
@@ -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 }}"