CI: (deps): Bump dask from 2024.10.0 to 2024.11.1 in /ci #203
Workflow file for this run
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: Auto-merge Dependabot PRs | |
on: | |
pull_request_target: | |
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 }} | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Set auto-merge | |
run: gh pr merge -R ${{ github.repository }} --merge --auto ${{ github.event.pull_request.number }} | |
- name: Review PR | |
run: gh pr review -R ${{ github.repository }} --approve ${{ github.event.pull_request.number }} |