Skip to content

[BUG] Export to ovf makes a bad ovf file #441

[BUG] Export to ovf makes a bad ovf file

[BUG] Export to ovf makes a bad ovf file #441

# Copyright (c) 2021 VMware, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Greeting
on:
issues:
types: ["opened"]
jobs:
greeting:
name: Send Greeting
runs-on: ubuntu-20.04
# 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@v4
with:
fetch-depth: 1
- name: Render template
id: template
uses: chuhlomin/render-template@v1.10
with:
template: .github/comment-template.md
vars: |
author: ${{ github.actor }}
- name: Create comment
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: ${{ github.event.issue.number }}
body: ${{ steps.template.outputs.result }}