Skip to content

Releases: check-spelling/check-spelling

Alpha release 9

24 Feb 04:22
Compare
Choose a tag to compare
Pre-release

Fix force push handling

Alpha release 8

23 Feb 18:00
Compare
Choose a tag to compare
Pre-release
  • Fix annotations for pushes

Alpha release 7

23 Feb 16:03
Compare
Choose a tag to compare
Pre-release
  • Adjust annotation blame version algorithm
  • Minor improvements for debugging of excluded paths (I may remove the debug guard for this with the addition of the group...)

Alpha release 6

21 Feb 10:51
Compare
Choose a tag to compare
Pre-release

This is a tiny bugfix to handle repositories with dangling symlinks.

Alpha release 5

21 Feb 01:20
Compare
Choose a tag to compare
Pre-release

You can use schedule to handle external pull requests:

name: Spell checking
on:
  schedule:
    # * is a special character in YAML so you have to quote this string
    - cron: '15 4 * * *'
  push:
  pull_request:

jobs:
  build:
    name: Spell checking
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2.0.0
      with:
        fetch-depth: 0
    - uses: check-spelling/check-spelling@0.0.5-alpha
      env:
        bucket: ssh://git@github.com/check-spelling/examples-testing.git
        project: spelling-data-schedule
        timeframe: 1440
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Alpha Release 4

19 Feb 18:46
Compare
Choose a tag to compare
Pre-release
  • Support for a schedule task to handle checking foreign PRs:
    name: Spell checking
    on:
      schedule:
        # * is a special character in YAML so you have to quote this string
        - cron: '0 * * * *'
    
    The initial version only looks at one hour's worth of PRs. I'll eventually support a configurable time window. I may need to teach it how to recognize if it's already checked a given commit (in case the cron runs, e.g. every 5 minutes and the window is an hour).

Alpha release 3

19 Feb 08:58
Compare
Choose a tag to compare
Pre-release
  • Collapsing suggestions

Alpha release 2

19 Feb 00:00
Compare
Choose a tag to compare
Pre-release

Support for local whitelists.

Preliminary work on PRs.

Under the hood: grouped output.

Alpha release

16 Feb 06:58
Compare
Choose a tag to compare
Pre-release

This tool is designed to identify misspellings in GitHub projects.

I'm still working on the integration bits, I'll hopefully have better documentation for it shortly.