You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -519,6 +519,26 @@ to ensure your code adheres to the style guidelines. We provide a command to lin
519
519
code using `pdm run lint`. For this to work you have to install the development
520
520
dependencies using `pdm install -d` if you haven't already.
521
521
522
+
## Copyright Headers Management
523
+
524
+
This project uses HashiCorp's [Copywrite](https://github.com/hashicorp/copywrite) tool to manage copyright headers across all source files. Copywrite automatically ensures consistent copyright headers and license information across the codebase.
525
+
526
+
The project includes a `.copywrite.hcl` file that configures how copyright headers are managed:
527
+
528
+
### Usage
529
+
530
+
To check if any files are missing copyright headers:
531
+
532
+
```bash
533
+
copywrite headers --plan
534
+
```
535
+
536
+
To automatically add missing copyright headers:
537
+
538
+
```bash
539
+
copywrite headers
540
+
```
541
+
522
542
## Deployment
523
543
524
544
Botkit is designed to be deployed on various platforms, including cloud services like
0 commit comments