We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15a8f61 commit 74dfc5dCopy full SHA for 74dfc5d
1 file changed
.github/workflows/FirstWorkflow.yml
@@ -0,0 +1,25 @@
1
+name: My First Workflow
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ workflow_dispatch:
7
+
8
+jobs:
9
+ my_job:
10
+ name: test
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - run: echo "Hello World"
14
15
+ - name: Checkout
16
+ uses: actions/checkout@v4.2.2
17
18
+ - name: List files in the repo
19
+ run: |
20
+ echo "The repo ${{github.repository}} contains the following files:"
21
+ tree
22
23
24
25
0 commit comments