build: delete spell-check.yml action.

This commit is contained in:
liqiang-fit2cloud 2022-10-21 15:54:49 +08:00
parent 52430c7b1b
commit ce0f961b31
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
# refer to https://github.com/crate-ci/typos/blob/master/docs/github-action.md
name: Spell Check
on:
workflow_dispatch:
inputs:
repo:
description: 'Repo'
required: true
default: "metersphere/metersphere"
branch:
description: 'Branch'
required: true
default: "main"
jobs:
run:
name: Spell Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.branch }}
- name: Check
uses: crate-ci/typos@master