Skip to content

TestWorkflow

TestWorkflow #86

Workflow file for this run

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
uses: dawidd6/action-send-mail@v4
with:
server_address: smtp-mail.outlook.com
server_port: 587
secure: true
username: ${{ secrets.ASTERISKTEAMSA_USERNAME }}
password: ${{ secrets.ASTERISKTEAMSA_PASSWORD }}
subject: Test Email
to: [email protected]
from: Asterisk Development Team <[email protected]>
body: "test email"
reply_to: [email protected]
ignore_cert: true
convert_markdown: false