read body from file if specified so

This commit is contained in:
Dawid Dziurla
2019-12-06 10:26:00 +01:00
parent 445b6879ac
commit f50066a2fe
3 changed files with 10 additions and 2 deletions

View File

@ -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