Skip to content

Clarify how network_interface in customize blocks are assigned #238

Clarify how network_interface in customize blocks are assigned

Clarify how network_interface in customize blocks are assigned #238

---
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@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
with:
issue-number: '${{ github.event.issue.number }}'
body: '${{ steps.template.outputs.result }}'