-
-
Notifications
You must be signed in to change notification settings - Fork 355
30 lines (27 loc) · 790 Bytes
/
check-diff-size.yml
File metadata and controls
30 lines (27 loc) · 790 Bytes
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
name: Test
on:
workflow_dispatch:
pull_request:
jobs:
check-diff:
name: Check diff size
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: "Check that diff isn't too large"
env:
GH_TOKEN: ${{ github.token }}
run: |
FILES_CHANGED=$(gh pr diff ${{github.event.pull_request.number}} --name-only | wc -l)
echo "Number of files changed in this PR: ${FILES_CHANGED}"
if [ $FILES_CHANGED -gt 20 ]
then
echo "The diff is too large. You've changed ${FILES_CHANGED} in this PR!"
exit 1
else
echo "The diff looks nice and small - good work! 😎"
exit 0
fi