Skip to content

Commit 0c93fe8

Browse files
committed
Merge remote-tracking branch 'origin/main' into develop
2 parents bb0834a + 32475bc commit 0c93fe8

File tree

6 files changed

+71
-0
lines changed

6 files changed

+71
-0
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
Here you can see the full list of changes between each Telegram Git Notifier package release.
44

5+
## v1.0.5 - 2024-02-08
6+
7+
### What's Changed
8+
9+
* create messages for delete event by @avaelo in https://github.com/cslant/laravel-telegram-git-notifier/pull/61
10+
11+
### New Contributors
12+
13+
* @avaelo made their first contribution in https://github.com/cslant/laravel-telegram-git-notifier/pull/61
14+
15+
**Full Changelog**: https://github.com/cslant/laravel-telegram-git-notifier/compare/v1.0.4...v1.0.5
16+
517
## v1.0.4 - 2024-01-26
618

719
### What's Changed
@@ -70,6 +82,7 @@ Here you can see the full list of changes between each Telegram Git Notifier pac
7082

7183

7284

85+
7386
```
7487
- This feature allows you to flexibly configure and manage your application according to your preferences.
7588

lang/de/events/github/meta.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
return [
4+
'delete' => [
5+
'title' => '🗑 <b>Webhook gelöscht</b>',
6+
'organization' => '🏢 Organisation: <b>:organization</b>',
7+
'full_name' => '📦 Repository: 🦑<b>:full_name</b>',
8+
'sender' => '👤 Sender (der das Ereignis ausgelöst hat): <b>:sender</b>',
9+
],
10+
];

lang/en/events/github/meta.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
return [
4+
'delete' => [
5+
'title' => '🗑 <b>Webhook Deleted</b>',
6+
'organization' => '🏢 Organization: <b>:organization</b>',
7+
'full_name' => '📦 Repository: 🦑<b>:full_name</b>',
8+
'sender' => '👤 Sender (triggered the event): <b>:sender</b>',
9+
],
10+
];

lang/ja/events/github/meta.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
return [
4+
'delete' => [
5+
'title' => '🗑 <b>Webhook 削除</b>',
6+
'organization' => '🏢 組織: <b>:organization</b>',
7+
'full_name' => '📦 リポジトリ: 🦑<b>:full_name</b>',
8+
'sender' => '👤 送信者(イベントのトリガー): <b>:sender</b>',
9+
],
10+
];

lang/vi/events/github/meta.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
return [
4+
'delete' => [
5+
'title' => '🗑 <b>Webhook đã được xóa</b>',
6+
'organization' => '🏢 Tổ chức: <b>:organization</b>',
7+
'full_name' => '📦 Kho lưu trữ: 🦑<b>:full_name</b>',
8+
'sender' => '👤 Người thực hiện sự kiện: <b>:sender</b>',
9+
],
10+
];
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
/**
3+
* @var $payload object
4+
*/
5+
6+
?>
7+
8+
{!! __('tg-notifier::events/github/meta.delete.title') !!}
9+
10+
@if(isset($payload->organization))
11+
{!! __('tg-notifier::events/github/meta.delete.organization', ['organization' => $payload->organization->login]) !!}
12+
@endif
13+
@if(isset($payload->repository))
14+
{!! __('tg-notifier::events/github/meta.delete.full_name', ['full_name' => $payload->repository->full_name]) !!}
15+
@endif
16+
@if(isset($payload->sender))
17+
{!! __('tg-notifier::events/github/meta.delete.sender', ['sender' => $payload->sender->login]) !!}
18+
@endif

0 commit comments

Comments
 (0)