[BUG] PowerCLI template Dockerfile contains incorrect FROM image #326
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: Greeting | |
on: | |
issues: | |
types: ["opened"] | |
jobs: | |
greeting: | |
name: Send Greeting | |
runs-on: ubuntu-latest | |
# only send message to users not (yet) associated with repo | |
# https://docs.github.com/en/graphql/reference/enums#commentauthorassociation | |
if: github.event.issue.author_association == 'NONE' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
with: | |
fetch-depth: 1 | |
- name: Render template | |
id: template | |
uses: chuhlomin/render-template@b5c1c085165d9eb712cf4f2b56f89f11146ad017 | |
with: | |
template: .github/comment-template.md | |
vars: | | |
author: ${{ github.actor }} | |
- name: Create comment | |
uses: peter-evans/create-or-update-comment@c6c9a1a66007646a28c153e2a8580a5bad27bcfa | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: ${{ steps.template.outputs.result }} |