Skip to content

Commit

Permalink
feat: added echo-hi workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
frolvanya committed Dec 11, 2023
1 parent 0495e1e commit c779ac5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/echo-hi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Echo Hi

on:
workflow_dispatch:
inputs:
message:
description: 'Custom message to echo'
required: false
default: 'hi'

jobs:
echo-hi:
runs-on: ubuntu-latest

steps:
- name: Echo Message
run: echo "${{ github.event.inputs.message }}"

0 comments on commit c779ac5

Please sign in to comment.