mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 15:31:22 +01:00

This commit adds a new GitHub Actions workflow for repository lockdown. The workflow triggers when a pull request is opened, and it notifies the contributor to use the OpenSBI mailing list for patch reviews. Additionally, the .gitignore file is updated to include the .github directory. Signed-off-by: Dongdong Zhang <zhangdongdong@eswincomputing.com> Reviewed-by: Anup Patel <anup@branifault.org>
21 lines
233 B
Plaintext
21 lines
233 B
Plaintext
# ignore anything begin with dot
|
|
.*
|
|
|
|
# exceptions we need even begin with dot
|
|
!.clang-format
|
|
!.gitignore
|
|
!.github
|
|
|
|
# Object files
|
|
*.o
|
|
*.a
|
|
*.dep
|
|
|
|
#Build & install directories
|
|
build/
|
|
install/
|
|
|
|
# Development friendly files
|
|
tags
|
|
cscope*
|