Adding a disk to an existing VM does not propagate the disk uuid properly #325
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
name: Issue Greeting | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
greeting: | |
name: Send Greeting | |
runs-on: ubuntu-latest | |
if: github.event.issue.author_association == 'NONE' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
with: | |
fetch-depth: 1 | |
- name: Render Template | |
id: template | |
uses: chuhlomin/render-template@a473db625a96c98e519d188812dc22bcaf54ffba # v1.9 | |
with: | |
template: .github/issue_greeting_template.md | |
vars: | | |
author: ${{ github.actor }} | |
- name: Create Comment | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
with: | |
issue-number: '${{ github.event.issue.number }}' | |
body: '${{ steps.template.outputs.result }}' |