Commit #30 #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!" |