Skip to content

ci: bump crate-ci/typos from 1.23.6 to 1.24.1 #2

ci: bump crate-ci/typos from 1.23.6 to 1.24.1

ci: bump crate-ci/typos from 1.23.6 to 1.24.1 #2

Workflow file for this run

name: "Auto-merge Dependabot"
on: "pull_request"
jobs:
automerge:
name: "Check and merge PR"
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: "ubuntu-latest"
permissions:
contents: "write"
pull-requests: "write"
steps:
- name: "Fetch metadata"
uses: "dependabot/fetch-metadata@v2"
id: "metadata"
with:
github-token: ${{ github.token }}
- name: "Enable auto-merge"
if: ${{ contains(fromJSON('["version-update:semver-patch", "version-update:semver-minor"]'), steps.metadata.outputs.update-type) }}
run: |
gh pr merge --auto --squash "$PR"
env:
GH_TOKEN: ${{ github.token }}
PR: ${{ github.event.pull_request.html_url }}