Skip to content

Commit d74eabf

Browse files
authored
Mention go-generate when building local changes (#10174)
## What changed? A couple of trivial changes to `CONTRIBUTING.md`. ## Why? - Mention `make go-generate` in the instructions for building with API changes from other repos. This step is required if adding new endpoints, such as extending `workflowservice.WorkflowServiceClient`. - Removes reference to the `make copyright` target. The copyright headers were removed in #7689, which was merged last year. ## How did you test it? NA ## Potential risks None
1 parent 18d5ae9 commit d74eabf

1 file changed

Lines changed: 6 additions & 10 deletions

File tree

CONTRIBUTING.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -235,16 +235,12 @@ If you need to make changes to the gRPC / protobuf definitions while also workin
235235
go.temporal.io/sdk => ../sdk-go
236236
)
237237
```
238-
2. Build & fix errors: `make proto && make bins`
239-
240-
## License headers
241-
242-
This project is Open Source Software, and requires a header at the beginning of
243-
all source files. To verify that all files contain the header execute:
244-
245-
```bash
246-
make copyright
247-
```
238+
2. Build & fix errors:
239+
```
240+
make proto
241+
make go-generate
242+
make bins
243+
```
248244

249245
## Commit Messages And Titles of Pull Requests
250246

0 commit comments

Comments
 (0)