1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/.github/workflows/misspell.yml
2022-03-17 01:29:18 +00:00

26 lines
633 B
YAML

name: misspell
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
misspell:
permissions:
checks: write # for reviewdog/action-misspell to report issues using checks
contents: read # for actions/checkout to fetch code
name: spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b0e28b5ac45a892f91e7d036f8200cf5ed489415 # v3
- name: misspell
uses: reviewdog/action-misspell@83fd95f00e0c172832739f5b4af713aa809f1436 # v1
with:
github_token: ${{ secrets.github_token }}
locale: "US"