diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 31 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 11 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 21 | ||||
-rw-r--r-- | .github/labeler.yml | 42 | ||||
-rw-r--r-- | .github/pull_request_template.md | 5 | ||||
-rw-r--r-- | .github/workflows/labeler.yml | 11 |
6 files changed, 0 insertions, 121 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 49a1ba697..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: Bug report -about: Create a bug report to help us improve -title: -labels: - - 'type: bug' -assignees: '' ---- - -**Description** - -A clear description of what the bug is. If possible, explicitly indicate the -expected behavior vs. the observed behavior. - -**Steps to reproduce** - -If available, please include detailed reproduction steps. - -If the bug requires software that is not publicly available, see if it can be -reproduced with software that is publicly available. - -**Environment** - -Please include the following details of your environment: - -* `runsc -v` -* `docker version` or `docker info` (if available) -* `kubectl version` and `kubectl get nodes` (if using Kubernetes) -* `uname -a` -* `git describe` (if built from source) -* `runsc` debug logs (if available) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 772c9a0ac..000000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,11 +0,0 @@ -blank_issues_enabled: false -contact_links: - - name: gVisor Documentation (FAQ) - url: https://gvisor.dev/docs/user_guide/faq/ - about: Please see our documentation for common questions and answers. - - name: gVisor Documentation (Debugging) - url: https://gvisor.dev/docs/user_guide/debugging/ - about: Please see our documentation for debugging tips. - - name: gVisor User Forum - url: https://groups.google.com/g/gvisor-users - about: Ask and answer general questions here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 65f60f385..000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: Feature request -about: Suggest an idea or improvement -title: '' -labels: - - 'type: enhancement' -assignees: '' ---- - -**Description** - -A clear description of the feature or enhancement. - -**Is this feature related to a specific bug?** - -Please include a bug references if yes. - -**Do you have a specific solution in mind?** - -Please include any details about a solution that you have in mind, including any -alternatives considered. diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index b6a17051c..000000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,42 +0,0 @@ -"arch: arm": - - "**/*_arm64.*" - - "**/*_aarch64.*" -"arch: x86_64": - - "**/*_amd64.*" - - "**/*_x86.*" -"area: bazel": - - "**/BUILD" - - "**/*.bzl" -"area: docs": - - "**/g3doc/**" - - "**/README.md" -"area: filesystem": - - "pkg/sentry/fs/**" - - "pkg/sentry/vfs/**" - - "pkg/sentry/fsimpl/**" -"area: hostinet": - - "pkg/sentry/socket/hostinet/**" -"area: networking": - - "pkg/tcpip/**" - - "pkg/sentry/socket/**" -"area: kernel": - - "pkg/sentry/arch/**" - - "pkg/sentry/kernel/**" - - "pkg/sentry/syscalls/**" -"area: mm": - - "pkg/sentry/mm/**" -"area: tests": - - "**/tests/**" - - "**/*_test.go" - - "**/test/**" -"area: tooling": - - "tools/**" -"dependencies": - - "WORKSPACE" - - "go.mod" - - "go.sum" -"platform: kvm": - - "pkg/sentry/platform/kvm/**" - - "pkg/sentry/platform/ring0/**" -"platform: ptrace": - - "pkg/sentry/platform/ptrace/**" diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 264b4e9fa..000000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,5 +0,0 @@ -* [ ] Have you followed the guidelines in [CONTRIBUTING.md](../blob/master/CONTRIBUTING.md)? -* [ ] Have you formatted and linted your code? -* [ ] Have you added relevant tests? -* [ ] Have you added appropriate Fixes & Updates references? -* [ ] If yes, please erase all these lines! diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index b5fd10352..000000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: "Labeler" -on: -- pull_request - -jobs: - label: - runs-on: ubuntu-latest - steps: - - uses: actions/labeler@v2 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" |