Files
deepagentsjs/.gitignore
T
John Kennedy 9a9fce9429 ci: enforce sha-pinned github actions (#628)
## Summary
- add PR linting that rejects external GitHub Actions not pinned to a
40-character commit SHA
- keep existing action refs pinned and align stale version comments with
their pinned SHAs
- extend .gitignore coverage for local env, key/cert, Python cache, and
virtualenv files

## Testing
- local SHA-pin check over .github/workflows/*.yml and *.yaml
- ruby YAML parse for .github/workflows/*.yml
- git diff --cached --check
2026-06-25 13:43:21 -07:00

67 lines
725 B
Plaintext

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
**/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz
.yarn/cache
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
/dist
**/dist
/dist-examples
**/dist-examples
.turbo/
# misc
.DS_Store
*.pem
*.key
*.crt
.idea
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env.*
.env*.local
.env
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
credentials.json
# LangGraph API
.langgraph_api
**/.claude/settings.local.json
# Agent OS
agent-os
.claude
# Sandbox workspace directory - created at runtime
sandbox-workspace/
coverage
workspace/
__pycache__/
.venv/