Skip to content

Just the very first fix for hello world #1

Just the very first fix for hello world

Just the very first fix for hello world #1

Workflow file for this run

name: Hello World Workflow
on:
schedule:
- cron: '*/1 * * * *'
push

Check failure on line 6 in .github/workflows/hello-world.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/hello-world.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
jobs:
hello-world:
runs-on: ubuntu-latest
steps:
- id: preparation
name: Preparation
run: echo "Today is {date}. Praparing for the greeting."
- id: greeting
name: Greeting
run: echo "Hello {user}!"
- id: completion
name: Completion
run: echo "Have a nice day!"