Skip to content

Bump version to 2.3.1-dev #75

Bump version to 2.3.1-dev

Bump version to 2.3.1-dev #75

Workflow file for this run

name: Auto-merge
on:
pull_request:
types: [opened, synchronize, reopened]
permissions: {}
jobs:
auto-merge:
name: 🤝 Auto-merge
runs-on: ubuntu-latest
environment: auto-merge
if: >-
github.event.pull_request.user.login == 'gaborbernat' ||
github.event.pull_request.user.login == 'dependabot[bot]' ||
github.event.pull_request.user.login == 'pre-commit-ci[bot]' ||
github.event.pull_request.user.login == 'github-actions[bot]'
steps:
- name: 🔀 Enable auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}