Skip to content

Commit

Permalink
Auto-merge workflow was not added...
Browse files Browse the repository at this point in the history
  • Loading branch information
viral32111 committed Dec 6, 2023
1 parent 32b2c41 commit eadce0e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Dependabot Auto-Merge

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
workflow_dispatch:

jobs:
dependabot-auto-merge:
name: Dependabot Auto-Merge
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
permissions:
contents: write
pull-requests: write
issues: write
steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Enable auto-merge for pull request
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh pr merge --auto --rebase ${{ github.event.pull_request.html_url }}

0 comments on commit eadce0e

Please sign in to comment.