We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce7dc12 commit 9dd29c8Copy full SHA for 9dd29c8
.github/workflows/dependabot.yml
@@ -0,0 +1,23 @@
1
+name: Dependabot Automation
2
+on: pull_request
3
+
4
+permissions:
5
+ contents: write
6
+ pull-requests: write
7
8
+jobs:
9
+ automerge:
10
+ runs-on: ubuntu-latest
11
+ if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'sparfenyuk/mcp-proxy'
12
+ steps:
13
+ - name: Fetch metadata
14
+ id: metadata
15
+ uses: dependabot/fetch-metadata@v2
16
+ with:
17
+ github-token: "${{ secrets.GITHUB_TOKEN }}"
18
+ - name: Auto-merge Patch PRs
19
+ if: steps.metadata.outputs.update-type == 'version-update:semver-patch'
20
+ run: gh pr merge --auto --merge "$PR_URL"
21
+ env:
22
+ PR_URL: ${{github.event.pull_request.html_url}}
23
+ GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
.github/workflows/update-uv-lock.yml
0 commit comments