You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
249 B
YAML
13 lines
249 B
YAML
2 years ago
|
name: Auto approve dependabot PRs
|
||
|
|
||
|
on: pull_request_target
|
||
|
|
||
|
jobs:
|
||
|
auto-approve:
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
pull-requests: write
|
||
|
if: github.actor == 'dependabot[bot]'
|
||
|
steps:
|
||
|
- uses: hmarr/auto-approve-action@v3
|