Skip to content

CI: (deps): Bump dask from 2024.12.1 to 2025.1.0 in /ci #307

CI: (deps): Bump dask from 2024.12.1 to 2025.1.0 in /ci

CI: (deps): Bump dask from 2024.12.1 to 2025.1.0 in /ci #307

name: Auto-merge Dependabot PRs
on:
pull_request_target:
branches: [main]
jobs:
#
# Automatically review dependabot PRs and set them to automerge (on successful checks)
#
Automerge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
GH_PR: ${{ github.event.pull_request.number }}
permissions:
contents: write
pull-requests: write
steps:
- name: Set auto-merge
run: gh pr merge -R "$GH_REPO" --merge --auto "$GH_PR"
- name: Review PR
run: gh pr review -R "$GH_REPO" --approve "$GH_PR"