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
https://github.com/temporalio/temporal/pull/7689, which was merged last
year.


## How did you test it?

NA

## Potential risks

None
This commit is contained in:
Chris Smith
2026-05-04 15:35:42 -07:00
committed by GitHub
parent 18d5ae9917
commit d74eabf207

View File

@@ -235,15 +235,11 @@ If you need to make changes to the gRPC / protobuf definitions while also workin
go.temporal.io/sdk => ../sdk-go
)
```
2. Build & fix errors: `make proto && make bins`
## License headers
This project is Open Source Software, and requires a header at the beginning of
all source files. To verify that all files contain the header execute:
```bash
make copyright
2. Build & fix errors:
```
make proto
make go-generate
make bins
```
## Commit Messages And Titles of Pull Requests