mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 11:44:01 +00:00
14 lines
317 B
YAML
14 lines
317 B
YAML
name: Auto Approve Dependabot
|
|
|
|
on:
|
|
branches: [ master ]
|
|
|
|
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 }}"
|