We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 408095a commit d4e5877Copy full SHA for d4e5877
1 file changed
.github/workflows/context.yml
@@ -0,0 +1,22 @@
1
+name: Context Examples
2
+
3
+on: ['push']
4
+jobs:
5
+ context-job:
6
+ runs-on: ubuntu-latest
7
+ env:
8
+ MY_ACTION: ${{ github.action }}
9
+ steps:
10
+ - name: "My Step"
11
+ run: echo "Hello! $MY_ACTION"
12
+ - name: Show Runner Context
13
+ run: |
14
+ echo "$RUNNER_CONTEXT"
15
+ - name: Show Job Context
16
17
+ echo "Job Context:"
18
+ echo "$JOB_CONTEXT"
19
+ - name: Show Step Context
20
21
+ echo "Step Context:"
22
+ echo "$STEP_CONTEXT"
0 commit comments