diff options
author | Marc Cornellà <hello@mcornella.com> | 2021-12-01 12:25:58 +0100 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-12-01 12:25:58 +0100 |
commit | e253661a9b3d8bba3acc90bc06c211f14ab8d587 (patch) | |
tree | efb25d5bca1351819a0bc0993df442bb1c49d4f8 /.github/workflows/spelling.yml | |
parent | aef393bdce523ed5e5754721965fab2da8080119 (diff) | |
download | zsh-e253661a9b3d8bba3acc90bc06c211f14ab8d587.tar.gz zsh-e253661a9b3d8bba3acc90bc06c211f14ab8d587.tar.bz2 zsh-e253661a9b3d8bba3acc90bc06c211f14ab8d587.zip |
Revert "ci: add `check-spelling` GitHub Action"
This reverts commit aef393bdce523ed5e5754721965fab2da8080119.
Diffstat (limited to '.github/workflows/spelling.yml')
-rw-r--r-- | .github/workflows/spelling.yml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml deleted file mode 100644 index 06a8b74c9..000000000 --- a/.github/workflows/spelling.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Spell checking -on: - pull_request_target: - push: - issue_comment: - types: [created] - -jobs: - spelling: - name: Spell checking - runs-on: ubuntu-latest - steps: - - name: checkout-merge - if: "contains(github.event_name, 'pull_request')" - uses: actions/checkout@v2 - with: - ref: refs/pull/${{github.event.pull_request.number}}/merge - - name: checkout - if: ${{ github.event_name == 'push' || - ( - contains(github.event.comment.body, '@check-spelling-bot apply') - ) }} - uses: actions/checkout@v2 - - uses: check-spelling/check-spelling@main - id: spelling - if: ${{ github.event_name != 'issue_comment' || - ( - contains(github.event.comment.body, '@check-spelling-bot apply') - ) }} - with: - experimental_apply_changes_via_bot: 1 |