5Update manual.yml #9
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: Manual workflow | ||
# Controls when the action will run. Workflow runs when manually triggered using the UI | ||
# or API. | ||
on: | ||
workflow_dispatch: | ||
# Inputs the workflow accepts. | ||
inputs: | ||
name: | ||
# Friendly description to be shown in the UI instead of 'name' | ||
description: 'Person to greet' | ||
# Default value if no value is explicitly provided | ||
default: 'World' | ||
# Input has to be provided for the workflow to run | ||
required: true | ||
# The data type of the input | ||
type: string | ||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "greet" | ||
greet: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Runs a single command using the runners shell | ||
- name: Send greeting | ||
run: echo "Hello ${{ inputs.name }}" | ||
run: #validate-license-action | ||
- uses: datreeio/[email protected] | ||
update_request: | ||
update_result: | ||
- name: Build-PSModule (by PSModule) | ||
# You may pin to the exact commit or the version. | ||
# uses: PSModule/Build-PSModule@e78a220d18e26806b2d457f73af5e0687bf01253 | ||
uses: PSModule/[email protected] | ||
with: #distributioniOS | ||
# Name of the module to process. | ||
Name: # optional | ||
# Path to the folder where the modules are located. | ||
Path: # optional, default is src | ||
# Path to the folder where the built modules are outputted. | ||
ModulesOutputPath: # optional, default is outputs/modules | ||
# Path to the folder where the built docs are outputted. | ||
DocsOutputPath: # optional, default is outputs/docs | ||
run: #automation | ||
name: OtterDoc | ||
uses: OtterDoc/otterdoc-actions@2ea51d050f58c2ea2d29f8f46dec3dced929cc11 | ||
uses: OtterDoc/[email protected] | ||
with: #distributioniOS | ||
# An API key for OtterDoc | ||
key: | ||