[ISSUE #11176] Fix incorrect filter appender name in broker logging configuration #9305
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Misspell Check | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| push: | |
| branches: [master, develop] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| misspell-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install misspell | |
| run: | | |
| curl -L -o ./install-misspell.sh https://git.io/misspell | |
| sh ./install-misspell.sh | |
| - name: Run misspell | |
| run: find . -type f -print0 | xargs -0 bin/misspell -error -i transfered,derivate |