feat(02-workflow-events): reduce triggers #8
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
# 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!" |