-
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.
fix: Update to MorphoCloud/MorphoCloudWorkflow@15bc17c
List of MorphoCloudWorkflow changes: ``` $ git shortlog bb0e32f..15bc17c --no-merges Jean-Christophe Fillion-Robin (6): feat: Add support for synchronous update of instance status issue label fix(update-request-status-label): Remove redundant "repository" input fix(action/update-request-status-label): Handle case when server is "deleted" fix(action/update-request-status-label): Explicitly set "deleted" state after instance removal fix(create-instance): Add comment if instance request status label update failed fix(action/update-request-status-label): Fix automatic status retrieval ``` See MorphoCloud/MorphoCloudWorkflow@bb0e32f...15bc17c
- Loading branch information
Showing
3 changed files
with
38 additions
and
3 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
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
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 |
---|---|---|
|
@@ -420,6 +420,29 @@ jobs: | |
See details at https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
- name: Update Request Status Label | ||
id: update-request-status-label | ||
uses: ./.github/actions/update-request-status-label | ||
with: | ||
os_cloud: ${{ vars.MORPHOCLOUD_OS_CLOUD }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
instance_name: ${{ steps.define.outputs.instance_name }} | ||
issue_number: ${{ github.event.issue.number }} | ||
|
||
- name: comment (failed to update request status label) | ||
if: | ||
${{ steps.update-request-status-label.outcome == 'failure' && | ||
failure() }} | ||
uses: peter-evans/[email protected] | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: | | ||
### Instance Creation Results ❌ | ||
Failed to update request status label for instance **${{ steps.define.outputs.instance_name }}**. | ||
See details at https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
- name: comment (progress) | ||
uses: ./.github/actions/comment-progress | ||
with: | ||
|