Skip to content

Commit

Permalink
feat(send-email): Use more descriptive email body
Browse files Browse the repository at this point in the history
Co-authored-by: muratmaga <[email protected]>
  • Loading branch information
jcfr and muratmaga committed Aug 9, 2024
1 parent 795271b commit 0377704
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions .github/actions/send-email/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,31 @@ runs:
subject:
"[${{ github.event.repository.name }}] Instance ${{
inputs.instance_name }} created"
body: |
Instance ${{ inputs.instance_name }} created
convert_markdown: true
html_body: |
Your MorphoCloud instance is up and running:
Web connect: ${{ inputs.connection_url }}
SSH: ssh exouser@${{ inputs.instance_ip }}
Passphrase: ${{ inputs.instance_pwd }}
* **Graphical User Interface (GUI)**: Use the weblink provided below to access your instance.
* **Command Line Access**: Use the SSH information provided below to access your instance
from the command line.
In both cases, username is **exouser** and the passphrase is provided.
**Important Notes:**
- Each session is limited to 4h, after which your instance is automatically shelved.
- To unshelve an existing instance, use the`/unshelve` command.
- To shelve an instance and preserve your allocation, use the `/shelve` command.
- To obtain the latest set of access credentials, use the `/email` command.
If you have questions, please contact [[email protected]](mailto:[email protected]).
**Connection Methods:**
- Web connect: ${{ inputs.connection_url }}
- SSH: `ssh exouser@${{ inputs.instance_ip }}`
**Credentials:**
- Username: **exouser**
- Passphrase: `${{ inputs.instance_pwd }}`

0 comments on commit 0377704

Please sign in to comment.