Skip to content

Commit

Permalink
feat(manager/copier): Implement manager (#29215)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkubb committed Aug 6, 2024
1 parent c225196 commit 70376cc
Show file tree
Hide file tree
Showing 14 changed files with 754 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/usage/configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -2101,7 +2101,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 @@ -888,7 +888,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 @@ -22,6 +22,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 @@ -122,6 +123,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

0 comments on commit 70376cc

Please sign in to comment.