From 829fd4737d097f4a3006dfa84ccba7a089d21f1e Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 5 Nov 2024 23:50:46 +0700 Subject: [PATCH] Changes and tweaks --- routes/api_github_actions.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/routes/api_github_actions.php b/routes/api_github_actions.php index 0206bdd..4d79b67 100644 --- a/routes/api_github_actions.php +++ b/routes/api_github_actions.php @@ -11,5 +11,16 @@ // GitHub Actions Route::post('{repo}/version', [GitHubActionsController::class, 'version']) - ->whereIn('repo', ['nylo', 'support', 'framework', 'media-pro', 'permission-policy', 'device-meta', 'error-stack', 'laravel-notify-fcm', 'laravel-auth-slate']) + ->whereIn('repo', [ + 'nylo', + 'support', + 'framework', + 'media-pro', + 'permission-policy', + 'device-meta', + 'error-stack', + 'laravel-notify-fcm', + 'laravel-auth-slate', + 'scaffold_ui' + ]) ->name('actions.version');