Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/01-building-blocks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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!"
15 changes: 15 additions & 0 deletions .github/workflows/02-workflow-events.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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."
Empty file added .gitignore
Empty file.