File tree Expand file tree Collapse file tree 2 files changed +29
-19
lines changed Expand file tree Collapse file tree 2 files changed +29
-19
lines changed Original file line number Diff line number Diff line change
1
+ name : Cheks
2
+
3
+ on :
4
+ push :
5
+ branches : ["main"]
6
+ pull_request :
7
+ merge_group :
8
+
9
+ jobs :
10
+
11
+ check-changelogs :
12
+ name : changelogs
13
+ runs-on : ubuntu-latest
14
+ defaults :
15
+ run :
16
+ shell : bash
17
+
18
+ steps :
19
+ - name : Install dependencies
20
+ run : sudo apt install -y fd-find
21
+
22
+ - uses : actions/checkout@v3
23
+
24
+ - name : git fetch
25
+ run : git fetch origin main:main
26
+
27
+ - name : Check changelogs
28
+ run : ./scripts/check-changelogs.sh
29
+
Original file line number Diff line number Diff line change @@ -188,22 +188,3 @@ jobs:
188
188
run : |
189
189
./scripts/check-stylish.sh
190
190
git diff --exit-code
191
-
192
- check-changelogs :
193
- name : Check changelogs
194
- runs-on : ubuntu-latest
195
- defaults :
196
- run :
197
- shell : bash
198
-
199
- steps :
200
- - name : Install dependencies
201
- run : sudo apt install -y fd-find
202
-
203
- - uses : actions/checkout@v3
204
-
205
- - name : git fetch
206
- run : git fetch origin main:main
207
-
208
- - name : Check changelogs
209
- run : ./scripts/check-changelogs.sh
You can’t perform that action at this time.
0 commit comments