We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f5fd98 commit 8e102c2Copy full SHA for 8e102c2
1 file changed
.github/workflows/wrokflow_contect.yml
@@ -0,0 +1,21 @@
1
+#https://docs.github.com/en/actions/reference/workflows-and-actions/contexts
2
+
3
4
+name: github contexts
5
6
+on:
7
+ push
8
9
+jobs:
10
+ job1:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: github_ex
14
+ run: |
15
+ echo $MY_ACTION
16
+ echo ${MY_ACTOR}
17
+ env:
18
+ MY_ACTION: ${{ github.action }}
19
+ MY_ACTOR: ${{ github.actor }}
20
21
0 commit comments