02 - Workflow Events #44
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 * * * *" # Runs at midnight UTC every day | |
| workflow_dispatch: # Allows manual triggering of the workflow | |
| jobs: | |
| echo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Show the trigger | |
| run: echo "I've been triggered by ${{ github.event_name }} event." |