diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2022-12-15 16:14:01 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-15 16:14:01 -0800 |
| commit | 227d4a38ad68a36c60421858ed4ea667a165213c (patch) | |
| tree | cdce34c69564e391e1775131161986ad8bcdc266 /.github | |
| parent | fix: run all matched client in LspStart (#2314) (diff) | |
| download | nvim-lspconfig-227d4a38ad68a36c60421858ed4ea667a165213c.tar nvim-lspconfig-227d4a38ad68a36c60421858ed4ea667a165213c.tar.gz nvim-lspconfig-227d4a38ad68a36c60421858ed4ea667a165213c.tar.bz2 nvim-lspconfig-227d4a38ad68a36c60421858ed4ea667a165213c.tar.lz nvim-lspconfig-227d4a38ad68a36c60421858ed4ea667a165213c.tar.xz nvim-lspconfig-227d4a38ad68a36c60421858ed4ea667a165213c.tar.zst nvim-lspconfig-227d4a38ad68a36c60421858ed4ea667a165213c.zip | |
ci: remove auto-close bot
This is a nuisance.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/feature-branch-check.yml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/feature-branch-check.yml b/.github/workflows/feature-branch-check.yml deleted file mode 100644 index 40bbb29f..00000000 --- a/.github/workflows/feature-branch-check.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Close Non-Feature Branches - -on: - pull_request_target: - branches: - - master - -jobs: - close-master-branch: - runs-on: ubuntu-latest - permissions: - pull-requests: write - env: - PR_NUMBER: ${{ github.event.pull_request.number }} - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - steps: - - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - ref: ${{ github.event.pull_request.head.sha }} - - - name: Close if master branch - if: ${{ github.head_ref == 'master' }} - run: | - gh pr close $PR_NUMBER - gh pr comment $PR_NUMBER --body "Please develop on a feature branch. See https://github.com/neovim/nvim-lspconfig/pull/1464 for background." - exit 1 |
