-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (42 loc) · 1.22 KB
/
context.yml
File metadata and controls
43 lines (42 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Context
on: [push, pull_request]
jobs:
functions:
runs-on: ubuntu-latest
steps:
- name: dump
run: |
echo ${{ contains( 'hello', '11' ) }}
echo ${{ startsWith( 'hello', 'he' ) }}
echo ${{ endsWith( 'hello', '1o' ) }}
echo ${{ format( 'Hello {0} {1} {2}', 'World', '!', '!' ) }}
one:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: eccho "$GITHUB_CONTEXT"
- name: Dump job context
if: failure()
env:
JOB_CONTEXT: ${{ toJson(job) }}
run: echo "$JOB_CONTEXT"
- name: Dump steps context
env:
STEPS_CONTEXT: ${{ toJson(steps) }}
run: echo "$STEPS_CONTEXT"
- name: Dump runner context
if: always()
env:
RUNNER_CONTEXT: ${{ toJson(runner) }}
run: echo "$RUNNER_CONTEXT"
- name: Dump strategy context
env:
STRATEGY_CONTEXT: ${{ toJson(strategy) }}
run: echo "$STRATEGY_CONTEXT"
- name: Dump matrix context
env:
MATRIX_CONTEXT: ${{ toJson(matrix) }}
run: echo "$MATRIX_CONTEXT"