We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/laurynas-biveinis/elisp-dev-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
super-linter.yml•970 B
---
name: Super-Linter
# Run this workflow every time a new commit pushed to your repository
on: push
permissions: {}
jobs:
super-lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v6 # zizmor: ignore[unpinned-uses]
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
persist-credentials: false
- name: Run Super-Linter
uses: super-linter/super-linter/slim@latest # zizmor: ignore[unpinned-uses]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: main
VALIDATE_GIT_COMMITLINT: false
# Until https://github.com/kucherenko/jscpd/issues/737 is fixed
VALIDATE_JSCPD: false