From d00d83b284c0850518649f1d3dc684a85bb69dca Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Sun, 21 May 2023 10:53:41 -0400 Subject: [PATCH 01/10] Create notify-telegram.yml --- .github/workflows/notify-telegram.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/notify-telegram.yml diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml new file mode 100644 index 0000000..ea781c3 --- /dev/null +++ b/.github/workflows/notify-telegram.yml @@ -0,0 +1,18 @@ +name: Telegram Notifier + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + + notifytelegram: + runs-on: ubuntu-latest + steps: + - name: Notify the commit on Telegram + uses: EverythingSuckz/github-telegram-notify@main + with: + bot_token: '${{ secrets.6131699506:AAGZVZA85qBPDtoakDb9n7Ljh_wAU50d1ZQ }}' + chat_id: '${{ secrets.-1001752348115 }}' From ed5670c31d29f9ce1b7ff234915d7a06a8d6606b Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Sun, 21 May 2023 11:03:38 -0400 Subject: [PATCH 02/10] Update notify-telegram.yml --- .github/workflows/notify-telegram.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml index ea781c3..21f48e4 100644 --- a/.github/workflows/notify-telegram.yml +++ b/.github/workflows/notify-telegram.yml @@ -14,5 +14,5 @@ jobs: - name: Notify the commit on Telegram uses: EverythingSuckz/github-telegram-notify@main with: - bot_token: '${{ secrets.6131699506:AAGZVZA85qBPDtoakDb9n7Ljh_wAU50d1ZQ }}' - chat_id: '${{ secrets.-1001752348115 }}' + bot_token: '${{ secrets.BOT_TOKEN }}' + chat_id: '${{ secrets.CHAT_ID }}' From f08d732e44db34394c7db90f22c219b6ac82c0e4 Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Sun, 21 May 2023 11:05:57 -0400 Subject: [PATCH 03/10] Delete pkglist --- pkglist | 83 --------------------------------------------------------- 1 file changed, 83 deletions(-) delete mode 100644 pkglist diff --git a/pkglist b/pkglist deleted file mode 100644 index c9ce021..0000000 --- a/pkglist +++ /dev/null @@ -1,83 +0,0 @@ -These are the packages we are maintaining in both Core and Extra repositories. -The rest of them are from Void team. - -Graphite-color-schemes -Graphite-color-schemes-black -Graphite-color-schemes-dark -Graphite-color-schemes-light -Graphite-color-schemes-nord-dark -Graphite-color-schemes-nord-light -Graphite-gtk-theme -Graphite-gtk-theme-black -Graphite-gtk-theme-black-compact -Graphite-gtk-theme-compact -Graphite-gtk-theme-dark -Graphite-gtk-theme-dark-compact -Graphite-gtk-theme-light -Graphite-gtk-theme-light-compact -Graphite-gtk-theme-nord-dark -Graphite-gtk-theme-nord-dark-compact -Graphite-gtk-theme-nord-light -Graphite-gtk-theme-nord-light-compact -Graphite-kvantum-theme -Graphite-kvantum-theme-Nord-dark -Graphite-kvantum-theme-Nord-light -Graphite-kvantum-theme-black -Graphite-kvantum-theme-dark -Graphite-kvantum-theme-light -Mint-Ice-Y-Dark -Sierra-Dark-Fluxbox -base-cereus -base-chroot-cereus -base-files-cereus -blesh -blesh-git -brave-bin -budgie-extras -calamares -calamares-cereus -calamares-modules-cereus -calmsky-icon-theme -cereus-neofetch -cereus-repo-core -cereus-repo-extra -cereus-wallpapers -flat-remix-icewm-theme -flat-remix-icon-theme-black -flat-remix-icon-theme-blue -flat-remix-icon-theme-brown -flat-remix-icon-theme-cyan -flat-remix-icon-theme-green -flat-remix-icon-theme-grey -flat-remix-icon-theme-magenta -flat-remix-icon-theme-orange -flat-remix-icon-theme-red -flat-remix-icon-theme-teal -flat-remix-icon-theme-violet -flat-remix-icon-theme-yellow -graphite-kvantum-theme -jetbrains-mono-font -librewolf-bin -musl-locales -nerd-fonts-symbols -octoxbps-git -picom-ibhagwan -picom-jonaburg -pixelitos-icon-theme -plasma-fluxbox -plasma-i3 -runit-cereus -runit-cereus-apparmor -vibrancy-icon-theme -vibrancy-icon-theme-colors -vibrancy-icon-theme-dark -vibrancy-icon-theme-full-dark -vibrancy-icon-theme-light -vibrancy-icon-theme-nonmono-dark -vibrancy-icon-theme-nonmono-light -whatsdesk-bin -whatsdesk-bin-i686 -whatsdesk-git -xed-xapps -xed-xapps-devel -xidlehook From 5f2f3115ab13422259cf527018d9bc4bab601760 Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Sun, 21 May 2023 11:34:41 -0400 Subject: [PATCH 04/10] Update notify-telegram.yml --- .github/workflows/notify-telegram.yml | 28 ++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml index 21f48e4..89e2e69 100644 --- a/.github/workflows/notify-telegram.yml +++ b/.github/workflows/notify-telegram.yml @@ -1,18 +1,20 @@ -name: Telegram Notifier - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - +name: telegram message +on: [push] jobs: - notifytelegram: + build: + name: Build runs-on: ubuntu-latest steps: - - name: Notify the commit on Telegram - uses: EverythingSuckz/github-telegram-notify@main + - name: send telegram message on push + uses: appleboy/telegram-action@master with: - bot_token: '${{ secrets.BOT_TOKEN }}' - chat_id: '${{ secrets.CHAT_ID }}' + to: ${{ secrets.TELEGRAM_TO }} + token: ${{ secrets.TELEGRAM_TOKEN }} + message: | + ${{ github.actor }} created commit: + Commit message: ${{ github.event.commits[0].message }} + + Repository: ${{ github.repository }} + + See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}} From 1bb75d14154d03a1e4d604d267fbbc6f3703456e Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Sun, 21 May 2023 11:53:13 -0400 Subject: [PATCH 05/10] Update notify-telegram.yml --- .github/workflows/notify-telegram.yml | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml index 89e2e69..60067c6 100644 --- a/.github/workflows/notify-telegram.yml +++ b/.github/workflows/notify-telegram.yml @@ -1,20 +1,13 @@ name: telegram message on: [push] -jobs: - build: - name: Build +jobs: + notify: + name: Notify via Telegram runs-on: ubuntu-latest steps: - - name: send telegram message on push - uses: appleboy/telegram-action@master - with: - to: ${{ secrets.TELEGRAM_TO }} - token: ${{ secrets.TELEGRAM_TOKEN }} - message: | - ${{ github.actor }} created commit: - Commit message: ${{ github.event.commits[0].message }} - - Repository: ${{ github.repository }} - - See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}} + - name: Send message to Telegram + uses: Lukasss93/telegram-action@v2 + env: + TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} + TELEGRAM_CHAT: ${{ secrets.TELEGRAM_TO }} From 0224f015f344f8d0056f89f820c2bb97cb082133 Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Sun, 21 May 2023 11:55:36 -0400 Subject: [PATCH 06/10] Update notify-telegram.yml --- .github/workflows/notify-telegram.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml index 60067c6..6041f3c 100644 --- a/.github/workflows/notify-telegram.yml +++ b/.github/workflows/notify-telegram.yml @@ -10,4 +10,4 @@ jobs: uses: Lukasss93/telegram-action@v2 env: TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} - TELEGRAM_CHAT: ${{ secrets.TELEGRAM_TO }} + TELEGRAM_CHAT: ${{ secrets.TELEGRAM_CHAT }} From 69af35994249748dbb0e442b5a4f97a45203d4be Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Sun, 21 May 2023 12:29:47 -0400 Subject: [PATCH 07/10] Update notify-telegram.yml --- .github/workflows/notify-telegram.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml index 6041f3c..9035494 100644 --- a/.github/workflows/notify-telegram.yml +++ b/.github/workflows/notify-telegram.yml @@ -6,8 +6,9 @@ jobs: name: Notify via Telegram runs-on: ubuntu-latest steps: - - name: Send message to Telegram - uses: Lukasss93/telegram-action@v2 - env: - TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} - TELEGRAM_CHAT: ${{ secrets.TELEGRAM_CHAT }} + - name: Notify the commit on Telegram + uses: EverythingSuckz/github-telegram-notify@main + with: + bot_token: '${{ secrets.BOT_TOKEN }}' + chat_id: '${{ secrets.CHAT_ID }}' + From f8777a053fb5ec8ee4a2fc84349f7fcab32915b3 Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Mon, 22 May 2023 21:55:51 -0400 Subject: [PATCH 08/10] Update notify-telegram.yml --- .github/workflows/notify-telegram.yml | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml index 9035494..f6f1eba 100644 --- a/.github/workflows/notify-telegram.yml +++ b/.github/workflows/notify-telegram.yml @@ -1,14 +1,21 @@ name: telegram message on: [push] - jobs: - notify: - name: Notify via Telegram + + build: + name: Build runs-on: ubuntu-latest steps: - - name: Notify the commit on Telegram - uses: EverythingSuckz/github-telegram-notify@main - with: - bot_token: '${{ secrets.BOT_TOKEN }}' - chat_id: '${{ secrets.CHAT_ID }}' - + - name: send telegram message on push + uses: appleboy/telegram-action@master + with: + to: ${{ secrets.TELEGRAM_TO }} + token: ${{ secrets.TELEGRAM_TOKEN }} + format: markdown + message: | + [${{ github.actor }}](https://github.com/${{ github.actor }}) created a commit on [${{ github.repository }}](https://github.com/${{ github.repository }}) + + *Commit message*: + ${{ github.event.commits[0].message }} + + [See changes](https://github.com/${{ github.repository }}/commit/${{github.sha}}) From 6eb7b3dcbeb95299997b27eebb21d33bd87f6e29 Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Mon, 22 May 2023 22:06:40 -0400 Subject: [PATCH 09/10] Update notify-telegram.yml --- .github/workflows/notify-telegram.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml index f6f1eba..340d779 100644 --- a/.github/workflows/notify-telegram.yml +++ b/.github/workflows/notify-telegram.yml @@ -9,7 +9,7 @@ jobs: - name: send telegram message on push uses: appleboy/telegram-action@master with: - to: ${{ secrets.TELEGRAM_TO }} + to: ${{ secrets.GROUP_ID }} token: ${{ secrets.TELEGRAM_TOKEN }} format: markdown message: | From 2b01f204b00df79d097fb26e21f3c295ccb828b6 Mon Sep 17 00:00:00 2001 From: Kevin Figueroa Date: Mon, 22 May 2023 22:57:12 -0400 Subject: [PATCH 10/10] Update notify-telegram.yml --- .github/workflows/notify-telegram.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/notify-telegram.yml b/.github/workflows/notify-telegram.yml index 340d779..20bf657 100644 --- a/.github/workflows/notify-telegram.yml +++ b/.github/workflows/notify-telegram.yml @@ -1,4 +1,4 @@ -name: telegram message +name: Telegram notification on: [push] jobs: @@ -6,11 +6,11 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - name: send telegram message on push + - name: Notify to internal Telegram group on push uses: appleboy/telegram-action@master with: - to: ${{ secrets.GROUP_ID }} - token: ${{ secrets.TELEGRAM_TOKEN }} + to: ${{ secrets.TG_INTERNAL_GROUP_ID }} + token: ${{ secrets.TG_INTERNAL_BOT_TOKEN }} format: markdown message: | [${{ github.actor }}](https://github.com/${{ github.actor }}) created a commit on [${{ github.repository }}](https://github.com/${{ github.repository }})