Skip to content
Closed
Show file tree
Hide file tree
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
30 changes: 30 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: 2
updates:
- package-ecosystem: github-actions
commit-message:
prefix: chore
include: scope
directory: /
schedule:
interval: monthly
groups:
github-actions:
patterns:
- "*"
update-types:
- "minor"
- "patch"
- package-ecosystem: composer
commit-message:
prefix: chore
include: scope
directory: /
schedule:
interval: monthly
groups:
composer:
patterns:
- "*"
update-types:
- "minor"
- "patch"
24 changes: 24 additions & 0 deletions .github/dependency-review-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# https://github.com/cncf/foundation/blob/main/policies-guidance/allowed-third-party-license-policy.md
allow-licenses:
# default allowed
- 'Apache-2.0'
# explicit CNCF allowlist
- '0BSD'
- 'BSD-2-Clause'
- 'BSD-2-Clause-FreeBSD'
- 'BSD-3-Clause'
- 'ISC'
- 'MIT'
- 'MIT-0'
- 'OpenSSL'
- 'OpenSSL-standalone'
- 'PSF-2.0'
- 'PostgreSQL'
- 'Python-2.0'
- 'Python-2.0.1'
- 'SSLeay-standalone'
- 'UPL-1.0'
- 'X11'
- 'Zlib'
# Google's patent licence for Go
- 'LicenseRef-scancode-google-patent-license-golang'
2 changes: 1 addition & 1 deletion app/Models/PolydockAppInstance.php
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ protected static function boot()
});

static::updated(function ($appInstance) {
if ($appInstance->isDirty('status')) {
if ($appInstance->wasChanged('status')) {
$appInstance->info('MODEL: Status changed for app instance', [
'app_instance_id' => $appInstance->id,
'previous_status' => $appInstance->getOriginal('status'),
Expand Down
Loading