0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-12 23:51:55 +00:00
renovatebot_renovate/lib/config/presets/internal/global.ts
Pedro Machado 9e51d427df
feat(presets): Added GRADLE_OPTS to safe global env (#33968)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2025-01-31 14:54:10 +00:00

11 lines
343 B
TypeScript

import type { Preset } from '../types';
/* eslint sort-keys: ["error", "asc", {caseSensitive: false, natural: true}] */
export const presets: Record<string, Preset> = {
safeEnv: {
allowedEnv: ['GO*', 'GRADLE_OPTS', 'RUSTC_BOOTSTRAP'],
description:
'Hopefully safe environment variables to allow users to configure.',
},
};