forked from lowRISC/opentitan
-
Notifications
You must be signed in to change notification settings - Fork 1
/
BLOCKFILE
63 lines (60 loc) · 2.11 KB
/
BLOCKFILE
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
# If a PR changes a file that matches a pattern in this file it will be blocked
# from merged by CI. The patterns as glob-like patterns matched using python
# fnmatch. In particular note there is no special handling for '/' so '*' can
# match multiple directory levels e.g. 'this/is/*/a/path' matches both
# 'this/is/a/foo/path' and 'this/is/a/foo/bar/path'.
#
# Anyone on the COMMITTERS list can authorize a change by adding a comment
# with:
#
# CHANGE AUTHORIZED: path/to/file
#
# To the PR. If there are multiple changes to authorize, one authorization
# is required per file and there is one authorization per line in the
# comment.
#
# At least two committers must authorize the change to pass.
# Ensure changes to block system must be authorized
BLOCKFILE
.github/workflows/pr_change_check.yml
ci/scripts/check-pr-changes-allowed.py
# For the following HW IP blocks and top level we don't expect changes while
# working on Darjeeling; so block changes to their RTL as well as to HJSON files
# that affect RTL generation (no wildcard as it's too broad and will also block
# DV-only files). Please keep this list sorted.
hw/ip/adc_ctrl/data/adc_ctrl.hjson
hw/ip/adc_ctrl/rtl/*
hw/ip/aon_timer/data/aon_timer.hjson
hw/ip/aon_timer/rtl/*
hw/ip/gpio/data/gpio.hjson
hw/ip/gpio/rtl/*
hw/ip/i2c/data/i2c.hjson
hw/ip/i2c/rtl/*
hw/ip/kmac/data/kmac.hjson
hw/ip/kmac/rtl/*
hw/ip/pattgen/data/pattgen.hjson
hw/ip/pattgen/rtl/*
hw/ip/pwm/data/pwm.hjson
hw/ip/pwm/rtl/*
hw/ip/rv_timer/data/rv_timer.hjson
hw/ip/rv_timer/rtl/*
hw/ip/spi_device/data/spi_device.hjson
hw/ip/spi_device/rtl/*
hw/ip/spi_host/data/spi_host.hjson
hw/ip/spi_host/rtl/*
hw/ip/tlul/rtl/*
hw/ip/uart/data/uart.hjson
hw/ip/uart/rtl/*
hw/ip/usbdev/rtl/*
hw/ip/usbdev/data/usbdev.hjson
hw/top_earlgrey/data/top_earlgrey.hjson
hw/top_earlgrey/data/xbar_main.hjson
hw/top_earlgrey/data/xbar_peri.hjson
hw/top_earlgrey/ip/ast/data/ast.hjson
hw/top_earlgrey/ip_autogen/alert_handler/data/alert_handler.hjson
hw/top_earlgrey/ip_autogen/rv_plic/data/rv_plic.hjson
hw/top_earlgrey/rtl/*
# Vendored IP
hw/vendor/lowrisc_ibex/rtl/*
hw/vendor/pulp_riscv_dbg/src/*
hw/vendor/pulp_riscv_dbg/debug_rom/*