feat: enable auto-merger workflow
Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com>
This commit is contained in:
parent
63701471d4
commit
d8e9ac7c31
1 changed files with 15 additions and 0 deletions
15
.github/workflows/automerger.yml
vendored
Normal file
15
.github/workflows/automerger.yml
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
name: 'Auto Merge PRs'
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
automerge:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
contents: write
|
||||||
|
steps:
|
||||||
|
- uses: fastify/github-action-merge-dependabot@v3
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
Loading…
Reference in a new issue