mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 13:05:31 +03:00
9d341c2c19
Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
16 lines
428 B
YAML
16 lines
428 B
YAML
name: Auto approve
|
|
on:
|
|
pull_request_target:
|
|
branches: [ master, stable-* ]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
auto-approve:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: hmarr/auto-approve-action@de8ae18c173c131e182d4adf2c874d8d2308a85b # v3.1.0
|
|
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
|
with:
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|