Skip to content

feat(02-workflow-events): reduce triggers #8

feat(02-workflow-events): reduce triggers

feat(02-workflow-events): reduce triggers #8

# See 01-building-blocks/README.md for more information
# about the building blocks of GitHub Actions
name: 01 - Building Blocks
on: push
jobs:
echo-hello:
runs-on: ubuntu-latest
steps:
- name: Say hello
run: echo "Hello, world!"
echo-goodbye:
runs-on: ubuntu-latest
steps:
- name: Successful step
run: |
echo "I will succeed"
exit 0
- name: Say goodbye
run: echo "Goodbye!"