Skip to content

Commit

Permalink
basic JSM workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 12, 2023
1 parent acabd88 commit ce3959a
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/jsm-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: JSM-Deploy

on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean
environment:
description: 'Environment to run tests against'
type: environment
required: true

jobs:
log-the-inputs:
runs-on: ubuntu-latest
steps:
- run: |
echo "Log level: $LEVEL"
echo "Tags: $TAGS"
echo "Environment: $ENVIRONMENT"
env:
LEVEL: ${{ inputs.logLevel }}
TAGS: ${{ inputs.tags }}
ENVIRONMENT: ${{ inputs.environment }}

0 comments on commit ce3959a

Please sign in to comment.