mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
1be9ede767
* Pinned workflow by hash - Pinned actions by SHA https://github.com/ossf/scorecard/blob/main/docs/checks.md#pinned-dependencies - Included permissions for some of the actions. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions * Fixed conflicts
26 lines
633 B
YAML
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"
|