Skip to content

Commit 0623bd4

Browse files
GeekTrainerCopilot
andcommitted
Add hello world workflow
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent b41d7d7 commit 0623bd4

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/hello.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Hello World
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
greet:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Say hello
12+
run: echo "Hello, GitHub Actions!"
13+
14+
- name: Show environment info
15+
run: |
16+
echo "Runner OS: $RUNNER_OS"
17+
echo "Repository: $GITHUB_REPOSITORY"
18+
echo "Triggered by: $GITHUB_ACTOR"

0 commit comments

Comments
 (0)