TestWorkflow #124
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TestWorkflow | |
run-name: "TestWorkflow" | |
on: | |
workflow_dispatch: | |
inputs: | |
branches: | |
description: "JSON array of branches: ['18','20'] (no spaces) or leave blank for all current branches." | |
required: false | |
type: string | |
env: | |
FROM_WF: "from workflow" | |
jobs: | |
Job1: | |
runs-on: ubuntu-latest | |
env: | |
FROM_JOB: "from job" | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Send Release Announcements SES no envelope | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: email-smtp.us-east-1.amazonaws.com | |
server_port: 587 | |
secure: false | |
username: ${{ secrets.ASTERISKTEAM_SES_KEY_ID }} | |
password: ${{ secrets.ASTERISKTEAM_SES_KEY_SECRET }} | |
subject: Test via SES | |
to: [email protected] | |
from: Asterisk Team <[email protected]> | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements SES no envelope2 | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: email-smtp.us-east-1.amazonaws.com | |
server_port: 587 | |
secure: false | |
username: ${{ secrets.ASTERISKTEAM_SES_KEY_ID }} | |
password: ${{ secrets.ASTERISKTEAM_SES_KEY_SECRET }} | |
subject: Test via SES | |
to: [email protected] | |
from: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements SES no envelope3 | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: email-smtp.us-east-1.amazonaws.com | |
server_port: 587 | |
secure: false | |
username: ${{ secrets.ASTERISKTEAM_SES_KEY_ID }} | |
password: ${{ secrets.ASTERISKTEAM_SES_KEY_SECRET }} | |
subject: Test via SES | |
to: [email protected] | |
from: <[email protected]> | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements SES envelope_from | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: email-smtp.us-east-1.amazonaws.com | |
server_port: 587 | |
secure: false | |
username: ${{ secrets.ASTERISKTEAM_SES_KEY_ID }} | |
password: ${{ secrets.ASTERISKTEAM_SES_KEY_SECRET }} | |
subject: Test via SES | |
to: [email protected] | |
from: Asterisk Team #<[email protected]> | |
envelope_from: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements SES envelope_from2 | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: email-smtp.us-east-1.amazonaws.com | |
server_port: 587 | |
secure: false | |
username: ${{ secrets.ASTERISKTEAM_SES_KEY_ID }} | |
password: ${{ secrets.ASTERISKTEAM_SES_KEY_SECRET }} | |
subject: Test via SES | |
to: [email protected] | |
from: Asterisk Team <[email protected]> | |
envelope_from: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements SES envelope_to | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: email-smtp.us-east-1.amazonaws.com | |
server_port: 587 | |
secure: false | |
username: ${{ secrets.ASTERISKTEAM_SES_KEY_ID }} | |
password: ${{ secrets.ASTERISKTEAM_SES_KEY_SECRET }} | |
subject: Test via SES | |
to: [email protected] | |
from: <[email protected]> | |
envelope_to: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements SES envelope_to/from | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: email-smtp.us-east-1.amazonaws.com | |
server_port: 587 | |
secure: false | |
username: ${{ secrets.ASTERISKTEAM_SES_KEY_ID }} | |
password: ${{ secrets.ASTERISKTEAM_SES_KEY_SECRET }} | |
subject: Test via SES | |
to: [email protected] | |
from: Asterisk Team <[email protected]> | |
envelope_from: [email protected] | |
envelope_to: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements GMAIL no envelope | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 587 | |
secure: false | |
username: [email protected] | |
password: ${{secrets.ASTERISKTEAMSA_GMAIL_TOKEN}} | |
subject: Test via GMAIL | |
to: [email protected] | |
from: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements GMAIL envelope_from | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 587 | |
secure: false | |
username: [email protected] | |
password: ${{secrets.ASTERISKTEAMSA_GMAIL_TOKEN}} | |
subject: Test via GMAIL | |
to: [email protected] | |
from: Asterisk Team | |
envelope_from: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements GMAIL envelope_to | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 587 | |
secure: false | |
username: [email protected] | |
password: ${{secrets.ASTERISKTEAMSA_GMAIL_TOKEN}} | |
subject: Test via GMAIL | |
to: [email protected] | |
from: Asterisk Team <[email protected]> | |
envelope_to: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |
- name: Send Release Announcements GMAIL envelope_to/from | |
if: always() | |
uses: dawidd6/action-send-mail@v6 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 587 | |
secure: false | |
username: [email protected] | |
password: ${{secrets.ASTERISKTEAMSA_GMAIL_TOKEN}} | |
subject: Test via GMAIL | |
to: [email protected] | |
from: Asterisk Team <[email protected]> | |
envelope_from: [email protected] | |
envelope_to: [email protected] | |
body: "test email" | |
reply_to: [email protected] | |
ignore_cert: true | |
convert_markdown: false | |
nodemailerlog: true | |
nodemailerdebug: true | |