aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-12-20 17:52:19 -0500
committerGitHub <noreply@github.com>2021-12-20 17:52:19 -0500
commit1062ea2cc532b32862346a1972073f1a8dd6d19d (patch)
treedb9e96ca3ff3e03c2c83fcf501e9fa8a3f7c0ef1 /.github
parent9241c684e18d85205b1a6e4e4a33b187b78a7356 (diff)
parent89a844a9c7d213a7ba41ace52428707fb7c952ff (diff)
downloadrneovim-1062ea2cc532b32862346a1972073f1a8dd6d19d.tar.gz
rneovim-1062ea2cc532b32862346a1972073f1a8dd6d19d.tar.bz2
rneovim-1062ea2cc532b32862346a1972073f1a8dd6d19d.zip
Merge pull request #16736 from dundargoc/ci/remove-unused-typo-fix
ci: remove unused "squash typo" workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/squash-typos.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.github/workflows/squash-typos.yml b/.github/workflows/squash-typos.yml
deleted file mode 100644
index 6779589dc6..0000000000
--- a/.github/workflows/squash-typos.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Squash Typo Pull Requests
-
-on:
- pull_request_target:
- types: labeled
-concurrency:
- group: ${{ github.workflow }}
-jobs:
- build:
- if: github.event.label.name == 'typo'
- runs-on: ubuntu-latest
-
- permissions:
- contents: write
- pull-requests: write
-
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - uses: actions/setup-python@v2
-
- - name: Setup git config
- run: |
- git config --global user.name 'marvim'
- git config --global user.email 'marvim@users.noreply.github.com'
-
- - run: python scripts/squash_typos.py
- env:
- PR_NUMBER: ${{ github.event.number }}