Remove renovate workflow
This commit is contained in:
@@ -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 ==="
|
|
||||||
@@ -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 }}"
|
|
||||||
Reference in New Issue
Block a user