feat: add png file of icon #3
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
# Action to check for spelling errors | |
name: misspell-fixer-action | |
on: | |
push: | |
branches: ['main'] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: sobolevn/misspell-fixer-action@master | |
- uses: peter-evans/create-pull-request@main | |
with: | |
token: ${{ secrets.BOT_ACTIONS }} | |
commit-message: "fix(typo): 🐛 typo fixes by misspell-fixer" | |
title: "fix(typo): 🐛 typo fixes by misspell-fixer" |