Terraform deploy of Ubuntu 22.04.3 LTS customised with cloud-init resets to DHCP after reboot. #218
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@b5c1c085165d9eb712cf4f2b56f89f11146ad017 # v1.7 | |
with: | |
template: .github/issue_greeting_template.md | |
vars: | | |
author: ${{ github.actor }} | |
- name: Create Comment | |
uses: peter-evans/create-or-update-comment@c6c9a1a66007646a28c153e2a8580a5bad27bcfa # v3.0.2 | |
with: | |
issue-number: '${{ github.event.issue.number }}' | |
body: '${{ steps.template.outputs.result }}' |