This commit is contained in:
Dawid Dziurla
2019-11-18 13:23:22 +01:00
parent 5e251a5fdf
commit cca8b03288
6 changed files with 113 additions and 22 deletions

27
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Test action
on:
push:
branches:
- master
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
branch: [test]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Send mail
uses: ./
with:
server_address: ${{secrets.ADDRESS}}
server_port: 465
username: ${{secrets.USERNAME}}
password: ${{secrets.PASSWORD}}
subject: ${{github.repository}}
body: Test of action completed successfully!
to: ${{secrets.USERNAME}}
from: github-actions