Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(manager/copier): Implement manager #29215

Merged
merged 11 commits into from
Aug 6, 2024
2 changes: 1 addition & 1 deletion docs/usage/configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -2096,7 +2096,7 @@ In the case that a user is automatically added as reviewer (such as Renovate App

## ignoreScripts

Applicable for npm and Composer only for now. Set this to `true` if running scripts causes problems.
Applicable for npm, Composer and Copier only for now. Set this to `true` if running scripts causes problems.

## ignoreTests

Expand Down
2 changes: 1 addition & 1 deletion lib/config/options/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ const options: RenovateOptions[] = [
'Set this to `false` if `allowScripts=true` and you wish to run scripts when updating lock files.',
type: 'boolean',
default: true,
supportedManagers: ['npm', 'composer'],
supportedManagers: ['npm', 'composer', 'copier'],
},
{
name: 'platform',
Expand Down
2 changes: 2 additions & 0 deletions lib/modules/manager/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import * as cloudbuild from './cloudbuild';
import * as cocoapods from './cocoapods';
import * as composer from './composer';
import * as conan from './conan';
import * as copier from './copier';
import * as cpanfile from './cpanfile';
import * as crossplane from './crossplane';
import * as depsEdn from './deps-edn';
Expand Down Expand Up @@ -117,6 +118,7 @@ api.set('cloudbuild', cloudbuild);
api.set('cocoapods', cocoapods);
api.set('composer', composer);
api.set('conan', conan);
api.set('copier', copier);
api.set('cpanfile', cpanfile);
api.set('crossplane', crossplane);
api.set('deps-edn', depsEdn);
Expand Down
Loading