Skip to content
Closed

Stuff #3809

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .ng-dev/config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export {format} from './format.mjs';
export {github} from './github.mjs';
export {pullRequest} from './pull-request.mjs';
export {commitMessage} from './commit-message.mjs';
export {release} from './release.mjs';
console.log("just testing something out");
export const github = {owner:'angular',name:'dev-infra',mainBranchName:'main',mergeMode:'all'};
Comment on lines +1 to +2

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Remove the debug console.log statement and correct the mergeMode value. The mergeMode configuration must be one of the valid RepositoryMergeMode values: 'team-only' or 'caretaker-only'.

Suggested change
console.log("just testing something out");
export const github = {owner:'angular',name:'dev-infra',mainBranchName:'main',mergeMode:'all'};
export const github = {owner:'angular',name:'dev-infra',mainBranchName:'main',mergeMode:'team-only'};

export const format = {};
export const commitMessage = {};
export const pullRequest = {};
export const release = {};