Skip to content

ILLDEV-456 Use template for batch email sending #346

ILLDEV-456 Use template for batch email sending

ILLDEV-456 Use template for batch email sending #346

Workflow file for this run

name: dependabot-auto-merge
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
permissions:
contents: write
pull-requests: write
jobs:
enable-auto-merge:
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' && github.event.pull_request.head.repo.full_name == github.repository && !github.event.pull_request.draft }}
runs-on: ubuntu-latest
steps:
- name: Enable auto-merge
env:
GH_TOKEN: ${{ github.token }}
PR_NUMBER: ${{ github.event.pull_request.number }}
run: gh pr merge --repo "$GITHUB_REPOSITORY" --auto --squash "$PR_NUMBER"