Skip to content

Commit

Permalink
Changes ExamProCo#27
Browse files Browse the repository at this point in the history
  • Loading branch information
vadzim-kuzmich authored Aug 17, 2024
1 parent 53bddc7 commit 4d9ff0d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/hello-world-manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Hello World Manually Workflow

on:
workflow_dispatch:
inputs:
greeting:
decription: A greeting line.
required: true
type: string
name:
description: Whom to greet.
required: true
type: string
completion:
description: A line after the greeting.

jobs:

hello-world:
runs-on: ubuntu-latest
steps:
- id: preparation
name: Preparation
run: echo "Preparing for the greeting."
- id: greeting
name: Greeting
run: echo "{inputs.greeting} {inputs.name}!"
- id: completion
name: Completion
run: echo "{inputs.completion}"

2 changes: 1 addition & 1 deletion .github/workflows/hello-world-on-events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- id: preparation
name: Preparation
run: echo "Preparation for the greeting."
run: echo "Preparing for the greeting."
- id: greeting
name: Greeting
run: echo "Hello $USER!"
Expand Down

0 comments on commit 4d9ff0d

Please sign in to comment.