mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2024-11-10 05:51:07 +07:00
read body from file if specified so
This commit is contained in:
parent
445b6879ac
commit
f50066a2fe
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
@ -8,6 +8,11 @@ on:
|
||||
jobs:
|
||||
main:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
body:
|
||||
- README.md
|
||||
- Test of action completed successfully!
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
@ -19,6 +24,6 @@ jobs:
|
||||
username: ${{secrets.USERNAME}}
|
||||
password: ${{secrets.PASSWORD}}
|
||||
subject: ${{github.repository}}
|
||||
body: Test of action completed successfully!
|
||||
body: ${{matrix.body}}
|
||||
to: ${{secrets.USERNAME}}
|
||||
from: github-actions
|
@ -21,7 +21,7 @@ inputs:
|
||||
description: Subject of mail message
|
||||
required: true
|
||||
body:
|
||||
description: Body of mail message
|
||||
description: Body of mail message (might be a filename to read from)
|
||||
required: true
|
||||
to:
|
||||
description: Recipients mail addresses (separated with comma)
|
||||
|
Loading…
Reference in New Issue
Block a user