summaryrefslogtreecommitdiffstats
path: root/reviewpad.yaml
blob: f9f489b95fcc6d04f509ad23bb26feb8af34a38d (plain)
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
60
61
62
63
64
groups:
  - name: ignored-patterns
    spec: '["*.lock","*.csv","*.yaml","*.txt"]'

rules:
  - name: changes-requirements
    spec: $hasFileName("requirements.txt") && $hasFileName("requirements-full.txt")

workflows:
  - name: label-pull-request-with-size
    description: Label pull request based on the number of lines changed
    always-run: true
    if:
        # Calculate size while ignoring patterns in the "ignored-patterns" group
        # For more details about size follow https://docs.reviewpad.com/guides/built-ins/#size
        - rule: $size($group("ignored-patterns")) <= 100
          extra-actions:
              - $removeLabels(["feat S", "feat M", "feat L", "feat XL"])
              - $addLabel("feat XS")
        - rule: $size($group("ignored-patterns")) > 100 && $size($group("ignored-patterns")) <= 300
          extra-actions:
              - $removeLabels(["feat XS", "feat M", "feat L", "feat XL"])
              - $addLabel("feat S")
        - rule: $size($group("ignored-patterns")) > 300 && $size($group("ignored-patterns")) <= 900
          extra-actions:
              - $removeLabels(["feat XS", "feat S", "feat L", "feat XL"])
              - $addLabel("feat M")
        - rule: $size($group("ignored-patterns")) > 900 && $size($group("ignored-patterns")) <= 1800
          extra-actions:
              - $removeLabels(["feat XS", "feat S", "feat M", "feat XL"])
              - $addLabel("feat L")
        - rule: $size($group("ignored-patterns")) > 1800
          extra-actions:
              - $removeLabels(["feat XS", "feat S", "feat M", "feat L"])
              - $addLabel("feat XL")
  - name: sanity
    description: Verify pull request sanity
    always-run: true
    if:
      - rule: $hasFileExtensions([".py"]) && $size() > 1000
        extra-actions:
          - $fail("This PR is very large and hard to review. Please split PR into multiple")
      - rule: $hasBinaryFile()
        extra-actions:
          - $fail("Images are not allowed in the repository, please remove images from the PR")
  - name: dependencies
    description: Verify pull request dependency changes
    always-run: true
    if:
      - rule: '!$isDraft() && $hasFileName("poetry.lock") && !$rule("changes-requirements")'
        extra-actions:
          - $review("REQUEST_CHANGES", "The `poetry.lock` file has been changed. Please update both `requirements.txt` and `requirements-full.txt` files")
      - rule: '!$isDraft() && $hasFileName("pyproject.toml") && !$rule("changes-requirements")'
        extra-actions:
          - $warn("The `pyproject.toml` file has been changed. Please make sure that the files `requirements.txt` and `requirements-full.txt` do not need to be updated")
  - name: EOF
    description: Verify files EOF
    always-run: true
    if:
      # By default, Reviewpad splits each file in the patch using the line feed character (\n or LF). 
      # This means that if a file has a carriage return character (\r) at the end, it indicates that the file has CRLF line endings instead.
      - rule: $hasCodePattern("\r$$")
        extra-actions:
          - $warn("It looks like you have files with `CRLF` line endings. Please make sure that all files have `LF` line endings")