Skip to content

deps:(deps-dev): update spacy[transformers] requirement from <3.7.0,>=3.2.0 to >=3.2.0,<3.8.0 #320

deps:(deps-dev): update spacy[transformers] requirement from <3.7.0,>=3.2.0 to >=3.2.0,<3.8.0

deps:(deps-dev): update spacy[transformers] requirement from <3.7.0,>=3.2.0 to >=3.2.0,<3.8.0 #320

# GitHub action to automerge dependabot PRs. Only merges if tests passes the
# branch protections in the repository settings.
# You can set branch protections in the repository under Settings > Branches > Add rule
name: automerge-bot-prs
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot-automerge:
runs-on: ubuntu-latest
# if actor is dependabot or pre-commit-ci[bot] then run
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
# Checkout action is required for token to persist
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL" # Use Github CLI to merge automatically the PR
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Auto approve dependabot PRs
if: ${{ github.actor == 'dependabot[bot]' }}
uses: hmarr/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}