mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-05-29 18:08:56 -06:00
14 lines
331 B
YAML
14 lines
331 B
YAML
name: dependabot
|
|
on: pull_request
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
jobs:
|
|
merge:
|
|
runs-on: ubuntu-latest
|
|
if: github.actor == 'dependabot[bot]'
|
|
steps:
|
|
- run: gh pr merge --auto --squash ${{ github.event.pull_request.html_url }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|