GitXplorerGitXplorer
s

misspell-fixer-action

public
146 stars
6 forks
3 issues

Commits

List of commits on branch master.
Verified
26173e641ba08255d0c9826b8a873f8b96f76932

Delete .github/FUNDING.yml

ssobolevn committed 7 months ago
Verified
8842a5615f83fed75e8a87015e9300a54d049961

(fix) Use GITHUB_OUTPUT instead of GITHUB_ENV (#14)

oolivierlefloch committed 2 years ago
Verified
a70cfac30bf7f4685033e3c4139064b324fdf585

Switch to using GITHUB_ENV instead of set-output (#12)

oolivierlefloch committed 2 years ago
Verified
e5368f1b21585248afad4d32df9bc100451dbbff

Update README.md (#7)

committed 4 years ago
Verified
58c29ffe24d530385b6846bc823ebe0d2e260e00

Replace "Github" with "GitHub" (#5)

aalexesprit committed 4 years ago
Verified
d9009f631abd9c10b315ed959d6485c717e46651

Update README.md

ssobolevn committed 4 years ago

README

The README file for this repository.

misspell-fixer-action

wemake.services

đź“ťAutomatically fixes typos and mistakes in your source code and docs!

Based on awesome misspell-fixer tool.

Usage

We had a typo in our entrypoint.sh file to show how this GitHub Action works. By using a pipeline of three actions we are able to receive PRs like this one.

Here's how our configuration looks like:

- uses: actions/checkout@v2
- uses: sobolevn/misspell-fixer-action@master
- uses: peter-evans/create-pull-request@v2.4.4
  with:
    token: ${{ secrets.GITHUB_TOKEN }}

Here's how it works:

  1. The first actions/checkout@v2 action checkouts our code from the repo
  2. Our own sobolevn/misspell-fixer-action finds misspells and fixes them
  3. Then peter-evans/create-pull-request creates a PR with the fixes created earlier
  4. Done!

Here's how our workflow looks like.

Options and outputs

You can pass any options that are supported by misspell-fixer tool, to do so you can use options key:

- uses: sobolevn/misspell-fixer-action@master
  with:
    options: '-rsvn src/'

You can also use the output produced by this action by default. Read more about outputs.

License

MIT.