Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
List of MorphoCloudWorkflow changes:

```
$ git shortlog 8ea5fa0..3585cd2 --no-merges
Jean-Christophe Fillion-Robin (1):
      fix(send-email): Update email template adding link to instance issue
```

See MorphoCloud/MorphoCloudWorkflow@8ea5fa0...3585cd2
  • Loading branch information
jcfr committed Aug 22, 2024
1 parent 918c3ae commit 51f5682
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/actions/send-email/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ inputs:
instance_name:
description: "Name of the instance to connect to"
required: true
instance_issue_number:
description: "Reference of the GitHub issue associated with the instance"
required: true
connection_url:
description: "Guacamole Connection URL"
required: true
Expand Down Expand Up @@ -54,6 +57,7 @@ runs:
- 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.
- Commands should be added as comments to issue[${{ github.repository }}#${{ inputs.instance_issue_number }}](https://github.com/${{ github.repository }}/issues/${{ inputs.instance_issue_number }})
If you have questions, please contact [[email protected]](mailto:[email protected]).
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/create-instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@ jobs:
mail_server_username: ${{secrets.MAIL_USERNAME}}
mail_server_password: ${{secrets.MAIL_PASSWORD}}
instance_name: ${{ steps.define.outputs.instance_name }}
instance_issue_number: ${{ github.event.issue.number }}
connection_url: ${{ steps.guacamole.outputs.connection_url }}
instance_ip: ${{ steps.instance_metadata.outputs.instance_ip }}
instance_pwd: ${{ steps.instance_metadata.outputs.instance_pwd }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/send-email.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ jobs:
mail_server_username: ${{secrets.MAIL_USERNAME}}
mail_server_password: ${{secrets.MAIL_PASSWORD}}
instance_name: ${{ steps.define.outputs.instance_name }}
instance_issue_number: ${{ github.event.issue.number }}
connection_url: ${{ steps.guacamole.outputs.connection_url }}
instance_ip: ${{ steps.instance_metadata.outputs.instance_ip }}
instance_pwd: ${{ steps.instance_metadata.outputs.instance_pwd }}
Expand Down

0 comments on commit 51f5682

Please sign in to comment.