|
From: Gleb C. <lna...@ya...> - 2023-04-05 11:55:18
|
Commit: e5b936f GitHub URL: https://github.com/SCST-project/scst/commit/e5b936f10b35b3371c1398aad4e9eeb7b93e2c86 Author: Gleb Chesnokov Date: 2023-04-05T14:54:49+03:00 Log Message: ----------- github: Add a job name for the mail notification action Enhance the mail notification GitHub action by including the commit message in the job name. Modified Paths: -------------- .github/workflows/mail_notification.yml | 1 + 1 file changed, 1 insertion(+) =================================================================== diff --git a/.github/workflows/mail_notification.yml b/.github/workflows/mail_notification.yml index e66ecc8..ee54d3b 100644 --- a/.github/workflows/mail_notification.yml +++ b/.github/workflows/mail_notification.yml @@ -9,6 +9,7 @@ on: jobs: send_mails: + name: ${{matrix.commit.message}} runs-on: ubuntu-latest strategy: max-parallel: 1 |