Skip to content

Commit

Permalink
[Moox] Renovate Lockfile Updates Nightly Close #263
Browse files Browse the repository at this point in the history
  • Loading branch information
adrolli committed Dec 15, 2023
1 parent f9ec8f3 commit 608a59b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion _packages/user/src/Resources/UserResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static function form(Form $form): Form
->dehydrateStateUsing(static function ($state) use ($form) {
return ! empty($state)
? Hash::make($state)
: User::find($form->getColumns())?->getAttribute('password');
: User::find($form->getColumns())?->password;
}),
];

Expand Down
23 changes: 23 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,28 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"lockFileMaintenance": {
"enabled": true,
"schedule": "after 12am and before 6am"
},
"packageRules": [
{
"managers": [
"npm",
"composer"
],
"updateTypes": [
"patch",
"minor",
"major"
],
"packagePatterns": [
"*"
],
"excludePackagePatterns": [
"*lock*"
]
}
]
}

0 comments on commit 608a59b

Please sign in to comment.