Skip to content

Commit 8e102c2

Browse files
authored
context
1 parent 6f5fd98 commit 8e102c2

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)