generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
59 lines (47 loc) · 1.17 KB
/
context.yaml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# https://docs.github.com/en/actions
name: "Context"
on: # yamllint disable-line rule:truthy
check_run: null
check_suite: null
issues: null
pull_request: null
pull_request_target: null
push: null
workflow_run:
types:
- "completed"
workflows:
- "Integrate"
jobs:
context:
name: "Context"
runs-on: "ubuntu-latest"
steps:
- name: "Dump env context"
run: "env|sort"
- name: "Hmm"
run: "echo ${GITHUB_JOB}"
- name: "Dump github context"
run: "echo \"$DATA\""
env:
DATA: "${{ toJson(github) }}"
- name: "Dump job context"
run: "echo \"$DATA\""
env:
DATA: "${{ toJson(job) }}"
- name: "Dump matrix context"
run: "echo \"$DATA\""
env:
DATA: "${{ toJson(matrix) }}"
- name: "Dump runner context"
run: "echo \"$DATA\""
env:
DATA: "${{ toJson(runner) }}"
- name: "Dump steps context"
run: "echo \"$DATA\""
env:
DATA: "${{ toJson(steps) }}"
- name: "Dump strategy context"
run: "echo \"$DATA\""
env:
DATA: "${{ toJson(strategy) }}"