fea(02=worflow-event): aciona mais triggers #4
This file contains hidden or 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: 02 - Workflow Events | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '*/5 * * * *' | |
| workflow_dispatch: | |
| jobs: | |
| echo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: show the trigger | |
| run: echo "I've been triggered by a(n) s{{ github.event_name }} event." |