Skip to content

Commit 3e54432

Browse files
committed
fix: update view template for push event gitlab
1 parent 0e66fcc commit 3e54432

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

lang/de/events/gitlab/push.php

Lines changed: 1 addition & 1 deletion
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 :repo:<code>:branch</code></b>',
66
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
77
'pusher' => '👤 Pushed by : <b>:name</b>',
88
],

lang/en/events/gitlab/push.php

Lines changed: 1 addition & 1 deletion
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 :repo:<code>:branch</code></b>',
66
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
77
'pusher' => '👤 Pushed by : <b>:name</b>',
88
],

lang/ja/events/gitlab/push.php

Lines changed: 1 addition & 1 deletion
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 :repo:<code>:branch</code></b>',
66
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
77
'pusher' => '👤 Pushed by : <b>:name</b>',
88
],

lang/vi/events/gitlab/push.php

Lines changed: 1 addition & 1 deletion
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 :repo:<code>:branch</code></b>',
66
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
77
'pusher' => '👤 Pushed by : <b>:name</b>',
88
],

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
$branch = implode('/', array_slice($ref, 2));
1111
?>
1212

13-
{!! __('tg-notifier::events/gitlab/push.default.title', [
13+
👷⚙️ {!! __('tg-notifier::events/gitlab/push.default.title', [
1414
'count' => $count,
1515
'noun' => $noun,
16-
'repo' => $payload->project->path_with_namespace,
16+
'repo' => "🦑<b>" . $payload->project->path_with_namespace,
1717
'branch' => $branch,
1818
]) !!}
1919

0 commit comments

Comments
 (0)