Skip to content

Commit

Permalink
git: test
Browse files Browse the repository at this point in the history
  • Loading branch information
clair-beep committed Apr 23, 2024
1 parent 0e976cf commit cf7673d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/workflow_dispatch_test_input_example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Workflow Dispatch Checking branch

on:
workflow_dispatch:
inputs:
environment:
description: 'The environment to deploy to'
required: true
default: 'production'
type: choice
options:
- production
- qaaaaaa
- dev

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- run: echo "Deploy to ${{ github.event.inputs.environment}} environment "

0 comments on commit cf7673d

Please sign in to comment.