We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tosin2013/documcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Auto-merge Dependabot PRs
on:
pull_request:
types: [opened, synchronize]
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Check PR
id: check
run: |
echo "Dependabot PR detected"
echo "auto_merge=true" >> "$GITHUB_OUTPUT"
- name: Auto-merge patch and minor updates
if: steps.check.outputs.auto_merge == 'true'
run: |
# Enable auto-merge for patch and minor dependency updates
gh pr merge --auto --squash "${{ github.event.pull_request.number }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}