We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 125eed7 commit 9f50b36Copy full SHA for 9f50b36
github-actions-workflow/.github/workflows/main.yaml
@@ -0,0 +1,11 @@
1
+name: My Github Actions Workflow
2
+on: [push]
3
+
4
+jobs:
5
+ testing_github:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Hello
9
+ run: echo "Hello, Github Actions"
10
+ - name: Display repo name
11
+ run: echo "this workflow is running in ${{ github.repository }}"
github-actions-workflow/README.md
@@ -0,0 +1 @@
+Hello my workflow
0 commit comments