forked from sapcc/limes
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (31 loc) · 893 Bytes
/
spell.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
################################################################################
# This file is AUTOGENERATED with <https://github.com/sapcc/go-makefile-maker> #
# Edit Makefile.maker.yaml instead. #
################################################################################
name: Spell
"on":
push:
branches:
- master
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
misspell:
name: Check
permissions:
checks: write
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Check for spelling errors
uses: reviewdog/action-misspell@v1
with:
exclude: ./vendor/*
fail_on_error: true
github_token: ${{ secrets.GITHUB_TOKEN }}
ignore: importas
reporter: github-check