diff options
| author | James McCoy <jamessan@jamessan.com> | 2021-12-20 17:52:19 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-20 17:52:19 -0500 |
| commit | 1062ea2cc532b32862346a1972073f1a8dd6d19d (patch) | |
| tree | db9e96ca3ff3e03c2c83fcf501e9fa8a3f7c0ef1 /.github | |
| parent | 9241c684e18d85205b1a6e4e4a33b187b78a7356 (diff) | |
| parent | 89a844a9c7d213a7ba41ace52428707fb7c952ff (diff) | |
| download | rneovim-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.yml | 33 |
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 }} |