Skip to content

ci: disable scheduled execution for cost estimator workflow #17

ci: disable scheduled execution for cost estimator workflow

ci: disable scheduled execution for cost estimator workflow #17

Workflow file for this run

name: Spell Checker
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
push:
tags:
- v[0-9]+.*
branches:
- "release/*"
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main' }}
jobs:
misspell:
name: runner / misspell
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v1
- name: misspell
id: check_for_typos
uses: reviewdog/action-misspell@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
path: "./book"
locale: "US"
exclude: |
**/mermaid/**