Skip to content

Update test-template.yml #8

Update test-template.yml

Update test-template.yml #8

Workflow file for this run

name: Test workflow template
on:
push:
branches: [ "main","housten-dryrun" ]
workflow_dispatch:
inputs:
logLevel:
description: "Level to log at"
type: choice
default: info
options:
- info
- warning
- debug
jobs:
echo:
runs-on: ubuntu-latest
steps:
- name: Run a one-line script
run: echo "Hello this is a workflow template running log level ${{ github.event.inputs.logLevel }}" ; echo "${{ github.event.inputs.logLevel }}">> $GITHUB_STEP_SUMMARY
name: echo ${{ github.event.inputs.logLevel }}