From 7d6f9a1f742e981c5efb6a72d433c90591136a99 Mon Sep 17 00:00:00 2001 From: Gleb Chesnokov Date: Thu, 12 Mar 2026 16:12:07 +0300 Subject: [PATCH] .github/workflows: Drop envelope_from from mail action The current action branch fails with "No recipients defined" when envelope_from is set in this workflow. The SMTP username already provides the sender address, so envelope_from is unnecessary here. --- .github/workflows/mail_notification.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/mail_notification.yml b/.github/workflows/mail_notification.yml index 9b3696564..e1a30ef2f 100644 --- a/.github/workflows/mail_notification.yml +++ b/.github/workflows/mail_notification.yml @@ -73,9 +73,8 @@ jobs: [${{steps.get_short_ref.outputs.short_ref}}] ${{steps.get_commit_message.outputs.commit_message}} # Required recipients' addresses: to: scst-svn@lists.sourceforge.net - # Required sender (quote it because of '<' and '>'): + # Required sender (quote it because of '<' and '>') from: '"SCST GitHub" <${{ secrets.MAIL_SERVER_USERNAME }}>' - envelope_from: ${{ secrets.MAIL_SERVER_USERNAME }} # Optional whether this connection use TLS (default is true if server_port is 465) # secure: true