Skip to content

Commit #32.7

Commit #32.7 #26

name: Hello World on Events Workflow
on:
create:
delete:
push:
branches:
- master
- main
jobs:
hello-world:
runs-on: ubuntu-latest
steps:
- id: preparation
name: Preparation
run: echo "Preparing for the greeting."
- id: greeting
name: Greeting
run: echo "Hello $USER!"
- id: completion
name: Completion
run: echo "Have a nice day!"