TestWorkflow #103
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 | |
| if: always() | |
| uses: dawidd6/action-send-mail@v6 | |
| with: | |
| server_address: ${{ vars.ASTERISKTEAM_SES_SMTP_HOST }} | |
| server_port: ${{ vars.ASTERISKTEAM_SES_SMTP_PORT }} | |
| secure: false | |
| username: ${{ secrets.ASTERISKTEAM_SES_KEY_ID }} | |
| password: ${{ secrets.ASTERISKTEAM_SES_KEY_SECRET }} | |
| subject: Test via SES | |
| to: [email protected] | |
| from: Asterisk Development Team <[email protected]> | |
| # nodemailerlog: true | |
| # nodemailerdebug: true | |
| # envelope_from: [email protected] | |
| # envelope_to: [email protected] | |
| body: "test email" | |
| reply_to: [email protected] | |
| ignore_cert: true | |
| convert_markdown: false | |