diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0539f767..9da1461e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -64,7 +64,7 @@ any 'help wanted' issues is a great place to start. [See the documentation][dev-docs] for detailed development information. -[dev-docs]: https://aws.github.io/aws-controllers-k8s/dev-docs/overview/ +[dev-docs]: https://aws-controllers-k8s.github.io/community/docs/contributor-docs/overview/ ## Code of Conduct diff --git a/scripts/build-controller.sh b/scripts/build-controller.sh index d3e60d95..8d78e867 100755 --- a/scripts/build-controller.sh +++ b/scripts/build-controller.sh @@ -218,4 +218,11 @@ cp -r $ROOT_DIR/templates/config/overlays/namespaced/*.json $config_output_dir/o popd 1>/dev/null echo "Running gofmt against generated code for $SERVICE" -gofmt -w "$SERVICE_CONTROLLER_SOURCE_PATH" \ No newline at end of file +gofmt -w "$SERVICE_CONTROLLER_SOURCE_PATH" + +echo "Updating additional GitHub repository maintenance files" +cp "$ROOT_DIR"/CODE_OF_CONDUCT.md "$SERVICE_CONTROLLER_SOURCE_PATH"/CODE_OF_CONDUCT.md +cp "$ROOT_DIR"/CONTRIBUTING.md "$SERVICE_CONTROLLER_SOURCE_PATH"/CONTRIBUTING.md +cp "$ROOT_DIR"/GOVERNANCE.md "$SERVICE_CONTROLLER_SOURCE_PATH"/GOVERNANCE.md +cp "$ROOT_DIR"/LICENSE "$SERVICE_CONTROLLER_SOURCE_PATH"/LICENSE +cp "$ROOT_DIR"/NOTICE "$SERVICE_CONTROLLER_SOURCE_PATH"/NOTICE