Skip to content

build(deps): bump undici from 5.26.3 to 5.28.4 in /pages #2311

build(deps): bump undici from 5.26.3 to 5.28.4 in /pages

build(deps): bump undici from 5.26.3 to 5.28.4 in /pages #2311

Workflow file for this run

---
name: Misspell fixer
on:
push:
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
types: [opened, synchronize, reopened]
jobs:
misspell-fixer:
runs-on: ubuntu-latest
steps:
- name: "🧰 Checkout"
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: "Missspell fixer"
uses: sobolevn/misspell-fixer-action@master
- name: "Check diff"
run: git diff --exit-code ${{ github.sha }}
- name: "Pull Request"
uses: peter-evans/create-pull-request@v6
if: failure()
with:
commit-message: "Fix typos by misspell-fixer"
title: "Fix typos by misspell-fixer for ${{ github.ref }}"
assignees: ${{ github.actor }}
reviewers: ${{ github.actor }}
branch: "auto-pr/misspell-fixer/${{ github.ref }}"