Skip to content

Commit 7280a20

Browse files
committed
init
0 parents  commit 7280a20

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test Workflow
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
test-job:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Print Test Message
14+
run: |
15+
echo "Test workflow is running!"
16+
echo "This workflow is used for testing organization requirements"
17+
echo "Current time: $(date)"
18+
echo "Runner OS: $RUNNER_OS"
19+
echo "GitHub Repository: $GITHUB_REPOSITORY"
20+
echo "GitHub Actor: $GITHUB_ACTOR"
21+
echo "GitHub Event Name: $GITHUB_EVENT_NAME"

0 commit comments

Comments
 (0)