File tree Expand file tree Collapse file tree 3 files changed +38
-17
lines changed Expand file tree Collapse file tree 3 files changed +38
-17
lines changed Original file line number Diff line number Diff line change 1
- github : WyriHaximus
1
+ github : WyriHaximus
Original file line number Diff line number Diff line change 6
6
supported-versions-matrix :
7
7
name : Supported Versions Matrix
8
8
runs-on : ubuntu-latest
9
+ needs :
10
+ - lint-yaml
9
11
outputs :
10
12
version : ${{ steps.supported-versions-matrix.outputs.version }}
11
13
steps :
15
17
supported-checks-matrix :
16
18
name : Supported Checks Matrix
17
19
runs-on : ubuntu-latest
18
- needs :
20
+ needs :
21
+ - lint-yaml
19
22
- composer-install
20
23
outputs :
21
24
check : ${{ steps.supported-checks-matrix.outputs.check }}
33
36
php : ${{ fromJson(needs.supported-versions-matrix.outputs.version) }}
34
37
composer : [lowest, current, highest]
35
38
needs :
39
+ - lint-yaml
36
40
- supported-versions-matrix
37
41
runs-on : ubuntu-latest
38
42
container :
61
65
composer : [lowest, current, highest]
62
66
check : ${{ fromJson(needs.supported-checks-matrix.outputs.check) }}
63
67
needs :
68
+ - lint-yaml
64
69
- composer-install
65
70
- supported-checks-matrix
66
71
- supported-versions-matrix
93
98
qodana :
94
99
name : Qodana
95
100
runs-on : ubuntu-latest
101
+ needs :
102
+ - lint-yaml
96
103
steps :
97
104
- name : Checkout
98
105
uses : actions/checkout@v2
@@ -122,9 +129,23 @@ jobs:
122
129
run : |
123
130
echo "❌ Qodana has failed"
124
131
echo "Please contact our support team by email at qodana-support@jetbrains.com. Attach qodana-error-logs.zip to your message."
132
+ lint-yaml :
133
+ runs-on : ubuntu-latest
134
+ steps :
135
+ - uses : actions/checkout@v1
136
+ - name : yaml-lint
137
+ uses : ibiqlik/action-yamllint@v3
138
+ with :
139
+ config_data : |
140
+ extends: default
141
+ rules:
142
+ line-length: disable
143
+ document-start: disable
144
+ truthy: disable
125
145
check-mark :
126
146
name : ✔️
127
147
needs :
148
+ - lint-yaml
128
149
- qa
129
150
- qodana
130
151
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1
1
name : Label sponsors ❤️
2
2
on :
3
- pull_request :
4
- types :
5
- - opened
6
- issues :
7
- types :
8
- - opened
3
+ pull_request :
4
+ types :
5
+ - opened
6
+ issues :
7
+ types :
8
+ - opened
9
9
jobs :
10
- sponsor-label :
11
- name : Label sponsors ❤️
12
- runs-on : ubuntu-latest
13
- steps :
14
- - uses : JasonEtco/is-sponsor-label-action@v1
15
- with :
16
- label : Sponsor Request ❤️
17
- env :
18
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
10
+ sponsor-label :
11
+ name : Label sponsors ❤️
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : JasonEtco/is-sponsor-label-action@v1
15
+ with :
16
+ label : Sponsor Request ❤️
17
+ env :
18
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments