File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : " Check LICENSE/README/CHANGELOG"
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ diff :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v1
10
+ - name : Check that the LICENSE files are the exact same
11
+ uses :
LouisBrunner/[email protected]
12
+ with :
13
+ old : LICENSE.md
14
+ new : src/Packages/Passport/LICENSE.md
15
+ mode : strict
16
+ tolerance : same
17
+ output : LICENSE-diff.txt
18
+ - name : Check that the README files are the exact same
19
+ uses :
LouisBrunner/[email protected]
20
+ with :
21
+ old : README.md
22
+ new : src/Packages/Passport/README.md
23
+ mode : strict
24
+ tolerance : same
25
+ output : README-diff.txt
26
+ - name : Check that the CHANGELOG files are the exact same
27
+ uses :
LouisBrunner/[email protected]
28
+ with :
29
+ old : CHANGELOG.md
30
+ new : src/Packages/Passport/CHANGELOG.md
31
+ mode : strict
32
+ tolerance : same
33
+ output : changelog-diff.txt
File renamed without changes.
You can’t perform that action at this time.
0 commit comments