Skip to content

Instantly share code, notes, and snippets.

View MShekow's full-sized avatar

Marius Shekow MShekow

View GitHub Profile
@MShekow
MShekow / renovate.json5
Created July 30, 2023 07:59
Renovate bot configuration template
// Note: we use JSON5 to be able to use comments
// This file is a suggestion for how to customize the default "config:base" preset. The sections below reference
// numbered tips from the cheat sheet in this article: https://www.augmentedmind.de/2023/07/30/renovate-bot-cheat-sheet/
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
// Configure PR assignees (#4)
"assignees": [
#!/bin/bash
# Prepares the macOS VM to be usable from Vagrant
if [[ `id -u` -ne 0 ]] ; then echo "You must run this script as root" ; exit 1 ; fi
set -e
# Enable SSH
systemsetup -setremotelogin on