aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-12-20 23:47:04 +0100
committerDundar Göc <gocdundar@gmail.com>2021-12-20 23:47:04 +0100
commit89a844a9c7d213a7ba41ace52428707fb7c952ff (patch)
treedb9e96ca3ff3e03c2c83fcf501e9fa8a3f7c0ef1 /.github/workflows
parent9241c684e18d85205b1a6e4e4a33b187b78a7356 (diff)
downloadrneovim-89a844a9c7d213a7ba41ace52428707fb7c952ff.tar.gz
rneovim-89a844a9c7d213a7ba41ace52428707fb7c952ff.tar.bz2
rneovim-89a844a9c7d213a7ba41ace52428707fb7c952ff.zip
ci: remove unused "squash typo" workflow
Diffstat (limited to '.github/workflows')
-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 }}