-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(send-email): Use more descriptive email body
Co-authored-by: muratmaga <[email protected]>
- Loading branch information
Showing
1 changed file
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }}` |