Skip to content

ci: add automated OpenLake CI/CD workflow #338

ci: add automated OpenLake CI/CD workflow

ci: add automated OpenLake CI/CD workflow #338

Workflow file for this run

name: Spell checking
on:
pull_request_target:
push:
issue_comment:
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: "!contains(github.event_name, 'pull_request')"
uses: actions/checkout@v2
- uses: check-spelling/check-spelling@main
with:
experimental_apply_changes_via_bot: 1