mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 03:33:59 +00:00
13 lines
314 B
YAML
13 lines
314 B
YAML
name: Auto Approve Dependabot
|
|
|
|
on: pull_request_target
|
|
|
|
jobs:
|
|
auto-approve:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: hmarr/auto-approve-action@v2.0.0
|
|
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
|
with:
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|