From: Gleb C. <lna...@ya...> - 2023-05-10 10:41:31
|
Commit: 2ec0fcc GitHub URL: https://github.com/SCST-project/scst/commit/2ec0fcc90330a89c51b15d5974609d4462be0beb Author: Gleb Chesnokov Date: 2023-05-10T13:34:15+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 |