We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 7280a20Copy full SHA for 7280a20
.github/workflows/test-workflow.yml
@@ -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