chore: bump pyright from 1.1.393 to 1.1.396 in /{{cookiecutter.repo_name}} #4
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: Dependabot Auto-merge | |
on: | |
pull_request: | |
types: [opened] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.user.login == 'dependabot[bot]' | |
steps: | |
- name: Enable auto-merge for Dependabot PRs | |
# don't include verbose dependabot PR description as body when merging | |
run: gh pr merge --auto --squash "$PR_URL" --body "" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |