tileserver-gl/.github/workflows/automerger.yml
Vinayak Kulkarni 6f4887fd46
chore: enable permissions for the whole workflow
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
2022-12-11 02:21:20 +05:30

20 lines
421 B
YAML

name: 'Auto Merge PRs'
on:
pull_request:
branches:
- master
permissions:
pull-requests: write
contents: write
jobs:
automerge:
runs-on: ubuntu-latest
if: >
github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}