From a6798068eb5fdb34d84dd8d5380de892fd0c915f Mon Sep 17 00:00:00 2001 From: Prasoon Shukla Date: Sun, 1 Sep 2024 00:44:28 +0200 Subject: [PATCH] wip --- .github/pull_request_template.md | 1 - .github/workflows/auto-close-pr.yml | 20 --------- LICENSE.md | 4 -- README.md | 64 ----------------------------- SECURITY.md | 4 -- 5 files changed, 93 deletions(-) delete mode 100644 .github/pull_request_template.md delete mode 100644 .github/workflows/auto-close-pr.yml delete mode 100644 LICENSE.md delete mode 100644 README.md delete mode 100644 SECURITY.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index caec1d48..00000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1 +0,0 @@ -At the moment we are not accepting contributions to the repository. diff --git a/.github/workflows/auto-close-pr.yml b/.github/workflows/auto-close-pr.yml deleted file mode 100644 index 043c2a92..00000000 --- a/.github/workflows/auto-close-pr.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Auto-close PR -on: - pull_request_target: - types: [opened, reopened] - -jobs: - close: - name: Run - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - run: | - gh pr close ${{ github.event.pull_request.number }} --comment \ - "At the moment we are not accepting contributions to the repository. - - Feedback for Copilot.vim can be given in the [Copilot community discussions](https://github.com/orgs/community/discussions/categories/copilot)." - env: - GH_REPO: ${{ github.repository }} - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index f0e80c9a..00000000 --- a/LICENSE.md +++ /dev/null @@ -1,4 +0,0 @@ -GitHub Copilot is offered under the [GitHub Terms of -Service](https://docs.github.com/en/site-policy/github-terms/github-terms-for-additional-products-and-features#github-copilot). - -Copyright (C) 2023 GitHub, Inc. - All Rights Reserved. diff --git a/README.md b/README.md deleted file mode 100644 index c6b8dae9..00000000 --- a/README.md +++ /dev/null @@ -1,64 +0,0 @@ -# GitHub Copilot for Vim and Neovim - -GitHub Copilot uses OpenAI Codex to suggest code and entire functions in -real-time right from your editor. Trained on billions of lines of public -code, GitHub Copilot turns natural language prompts including comments and -method names into coding suggestions across dozens of languages. - -Copilot.vim is a Vim/Neovim plugin for GitHub Copilot. - -To learn more, visit -[https://github.com/features/copilot](https://github.com/features/copilot). - -## Subscription - -GitHub Copilot requires a subscription. It is free for verified students and -maintainers of popular open source projects on GitHub. - -GitHub Copilot is subject to the [GitHub Additional Product -Terms](https://docs.github.com/en/site-policy/github-terms/github-terms-for-additional-products-and-features). - -## Getting started - -1. Install [Neovim][] or the latest patch of [Vim][] (9.0.0185 or newer). - -2. Install [Node.js][]. - -3. Install `github/copilot.vim` using vim-plug, packer.nvim, or any other - plugin manager. Or to install manually, run one of the following - commands: - - * Vim, Linux/macOS: - - git clone https://github.com/github/copilot.vim.git \ - ~/.vim/pack/github/start/copilot.vim - - * Neovim, Linux/macOS: - - git clone https://github.com/github/copilot.vim.git \ - ~/.config/nvim/pack/github/start/copilot.vim - - * Vim, Windows (PowerShell command): - - git clone https://github.com/github/copilot.vim.git ` - $HOME/vimfiles/pack/github/start/copilot.vim - - * Neovim, Windows (PowerShell command): - - git clone https://github.com/github/copilot.vim.git ` - $HOME/AppData/Local/nvim/pack/github/start/copilot.vim - -4. Start Vim/Neovim and invoke `:Copilot setup`. - -[Node.js]: https://nodejs.org/en/download/ -[Neovim]: https://github.com/neovim/neovim/releases/latest -[Vim]: https://github.com/vim/vim - -Suggestions are displayed inline and can be accepted by pressing the tab key. -See `:help copilot` for more information. - -## Troubleshooting - -We’d love to get your help in making GitHub Copilot better! If you have -feedback or encounter any problems, please reach out on our [Feedback -forum](https://github.com/orgs/community/discussions/categories/copilot). diff --git a/SECURITY.md b/SECURITY.md deleted file mode 100644 index 7b59e863..00000000 --- a/SECURITY.md +++ /dev/null @@ -1,4 +0,0 @@ -If you discover a security issue in this repo, please submit it through the -[GitHub Security Bug Bounty](https://hackerone.com/github). - -Thanks for helping make GitHub Copilot safe for everyone.