Skip to content

Commit b52b36d

Browse files
committed
Merge branch 'main' into feature/team
2 parents 4c4e69b + 8f7d665 commit b52b36d

File tree

11 files changed

+29
-17
lines changed

11 files changed

+29
-17
lines changed

lang/de/app.php

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
'by' => 'by',
55
'unknown_callback' => 'Unknown Callback. Something went wrong!',
66
'invalid_request' => 'Invalid Request!',
7+
'branch' => 'Branch',
78
];

lang/de/events/github/push.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
return [
44
'default' => [
5-
'title' => '👷⚙️ <b>:count</b> new :noun to 🦊<b>:repo:<code>:branch</code></b>',
5+
'title' => '<b>:count</b> new :noun to <b>:repo:<code>:branch</code></b>',
66
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
77
'pusher' => 'Pushed by',
88
],

lang/en/app.php

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
'by' => 'by',
55
'unknown_callback' => 'Unknown Callback. Something went wrong!',
66
'invalid_request' => 'Invalid Request!',
7+
'branch' => 'Branch',
78
];

lang/en/events/github/push.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
return [
44
'default' => [
5-
'title' => '👷⚙️ <b>:count</b> new :noun to 🦊<b>:repo:<code>:branch</code></b>',
5+
'title' => '<b>:count</b> new :noun to <b>:repo:<code>:branch</code></b>',
66
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
77
'pusher' => 'Pushed by',
88
],

lang/ja/app.php

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
'by' => 'by',
55
'unknown_callback' => 'Unknown Callback. Something went wrong!',
66
'invalid_request' => 'Invalid Request!',
7+
'branch' => 'Branch',
78
];

lang/ja/events/github/push.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
return [
44
'default' => [
5-
'title' => '👷⚙️ <b>:count</b> new :noun to 🦊<b>:repo:<code>:branch</code></b>',
5+
'title' => '<b>:count</b> new :noun to <b>:repo:<code>:branch</code></b>',
66
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
77
'pusher' => 'Pushed by',
88
],

lang/vi/app.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?php
22

33
return [
4-
'by' => 'bởi',
5-
'unknown_callback' => 'Callback không xác định. Đã xảy ra lỗi!',
6-
'invalid_request' => 'Yêu cầu không hợp lệ!',
4+
'by' => 'by',
5+
'unknown_callback' => 'Unknown Callback. Something went wrong!',
6+
'invalid_request' => 'Invalid Request!',
7+
'branch' => 'Branch',
78
];

lang/vi/events/github/push.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
return [
44
'default' => [
5-
'title' => '👷⚙️ <b>:count</b> new :noun to 🦊<b>:repo:<code>:branch</code></b>',
5+
'title' => '<b>:count</b> new :noun to <b>:repo:<code>:branch</code></b>',
66
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
77
'pusher' => 'Pushed by',
88
],

resources/views/events/github/push/default.blade.php

+10-2
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,26 @@
88
99
$ref = explode('/', $payload->ref);
1010
$branch = implode('/', array_slice($ref, 2));
11+
12+
if (empty($payload->commits)) {
13+
return '';
14+
}
1115
?>
1216

13-
{!! __('tg-notifier::events/github/push.default.title', [
17+
👷⚙️ {!! __('tg-notifier::events/github/push.default.title', [
1418
'count' => $count,
1519
'noun' => $noun,
16-
'repo' => $payload->repository->full_name,
20+
'repo' => "🦑<a href='{$payload->repository->html_url}'>{$payload->repository->full_name}</a>",
1721
'branch' => $branch,
1822
]
1923
) !!}
2024

2125
@foreach($payload->commits as $commit)
2226
@php
2327
$commitId = substr($commit->id, -7);
28+
29+
$commit->message = $commit->message ?? '';
30+
$commit->message = explode("\n", $commit->message)[0];
2431
@endphp
2532
{!! __('tg-notifier::events/github/push.default.commit', [
2633
'commit' => "<a href='$commit->url'>$commitId</a>",
@@ -30,4 +37,5 @@
3037
) !!}
3138
@endforeach
3239

40+
🌲 {{ __('tg-notifier::app.branch') }}: <code>{{ $branch }}</code>
3341
👤 {!! __('tg-notifier::events/github/push.default.pusher') !!}: <code>{{ $payload->pusher->name }}</code>

resources/views/events/github/workflow_job/completed.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
{{ $icon }} {!! __("tg-notifier::events/github/workflow_job.completed.$status", ['repo' => "🦑<a href='{$payload->repository->html_url}'>{$payload->repository->full_name}</a>"]) !!}
2323

2424
🚀 {!! __('tg-notifier::events/github/workflow_job.name') !!}: {{ $icon }} <code>{{ $payload->workflow_job->name }}</code> {{ $last }}
25-
🚨 {!! __('tg-notifier::events/github/workflow_job.status.title') !!}: <code>{!! __('tg-notifier::events/github/workflow_job.status.'.$status) !!}</code> 🕓 <code>{{ $allSeconds }}s</code>
25+
🚨 {!! __('tg-notifier::events/github/workflow_job.status.title') !!}: <code>{!! __('tg-notifier::events/github/workflow_job.status.'.$status) !!}</code> ⏱️ <code>{{ $allSeconds }}s</code>
2626
🔗 {!! __('tg-notifier::events/github/workflow_job.link', ['link' => "<a href='{$payload->workflow_job->html_url}'>{$payload->workflow_job->workflow_name}</a>"]) !!}

routes/bot.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717

1818
$routePrefix = config('telegram-git-notifier.defaults.route_prefix');
1919

20-
Route::prefix($routePrefix)->group(function () use ($routePrefix) {
21-
Route::match(['get', 'post'], '/', IndexAction::class)->name("$routePrefix.index");
20+
Route::prefix($routePrefix)->name("$routePrefix.")->group(function () {
21+
Route::match(['get', 'post'], '/', IndexAction::class)->name('index');
2222

23-
Route::prefix('webhook')->group(function () use ($routePrefix) {
24-
Route::get('set', [WebhookAction::class, 'set'])->name("$routePrefix.webhook.set");
25-
Route::get('delete', [WebhookAction::class, 'delete'])->name("$routePrefix.webhook.delete");
26-
Route::get('info', [WebhookAction::class, 'getWebHookInfo'])->name("$routePrefix.webhook.info");
27-
Route::get('updates', [WebhookAction::class, 'getUpdates'])->name("$routePrefix.webhook.updates");
23+
Route::prefix('webhook')->name('webhook.')->group(function () {
24+
Route::get('set', [WebhookAction::class, 'set'])->name('set');
25+
Route::get('delete', [WebhookAction::class, 'delete'])->name('delete');
26+
Route::get('info', [WebhookAction::class, 'getWebHookInfo'])->name('info');
27+
Route::get('updates', [WebhookAction::class, 'getUpdates'])->name('updates');
2828
});
2929
});

0 commit comments

Comments
 (0)