Skip to content

Commit

Permalink
Setup Dependabot auto-merge CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
viral32111 committed Dec 6, 2023
1 parent 3ae998b commit fa4000e
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 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 }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
paths:
- 'source/**.go'
- 'go.mod'
- '.github/workflows/ci.yml'
- '.github/workflows/*.yml'
branches:
- '**'
tags:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"[go]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.organizeImports": false
"source.organizeImports": "never"
}
}
}

0 comments on commit fa4000e

Please sign in to comment.