Add President Carter's funeral on 2025-Jan-09 (#2127) #1810
This file contains 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 fixer | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: sobolevn/misspell-fixer-action@master | |
- uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: misspell-fixes-${{ github.ref_name }} | |
delete-branch: true | |
commit-message: 'Fixes by misspell-fixer' | |
title: 'Typos fixed by misspell-fixer' | |
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> |