From 31cb9f1779a90343217bc7e28623dd7afa85ab26 Mon Sep 17 00:00:00 2001 From: Aaron Crickenberger Date: Fri, 22 Dec 2017 17:09:51 -0500 Subject: [PATCH] Treat staging repos as authoritative for all files Move files from kubernetes/foo root back to kubernetes/kubernetes/staging/src/k8s.io/foo root Then: - add CONTRIBUTING.md for all staging repos - add .PULL_REQUEST_TEMPLATE to all staging repos - ignore .github while diffing generated protobuf Kubernetes-commit: d9b5773101e930431f24fe178d988271c1becc35 --- .github/PULL_REQUEST_TEMPLATE.md | 2 ++ CONTRIBUTING.md | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 CONTRIBUTING.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..e559c074 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,2 @@ +Sorry, we do not accept changes directly against this repository. Please see +CONTRIBUTING.md for information on where and how to contribute instead. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..3598f4aa --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,7 @@ +# Contributing guidelines + +Do not open pull requests directly against this repository, they will be ignored. Instead, please open pull requests against [kuberentes/kubernetes](https://git.k8s.io/kubernetes/). Please follow the same [contributing guide](https://git.k8s.io/kubernetes/CONTRIBUTING.md) you would follow for any other pull request made to kubernetes/kubernetes. + +This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/sample-controller](https://git.k8s.io/kubernetes/staging/src/k8s.io/sample-controller) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot). + +Please see [Staging Directory and Publishing](https://git.k8s.io/community/contributors/devel/staging.md) for more information