ci: add misspell action (#18671)

This commit is contained in:
Julien Robert
2023-12-11 06:11:03 +00:00
committed by GitHub
parent 978fffc5a6
commit 8cfdabb2ed
4 changed files with 36 additions and 4 deletions
+24
View File
@@ -0,0 +1,24 @@
name: Fix typos nightly
on:
schedule:
- cron: "0 8 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: sobolevn/misspell-fixer-action@e5368f1b21585248afad4d32df9bc100451dbbff
- uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.PRBOT_PAT }}
commit-message: "chore: fixes by misspell-fixer"
title: "chore: typos fix by misspell-fixer"
branch: "bot/fix-typos"
delete-branch: true
body: |
This PR fixes typos in the codebase.
Please, review it and merge if everything is fine.
If there is proto changes, please, run `make proto-gen` and commit changes.