-
Notifications
You must be signed in to change notification settings - Fork 0
ci: configure Context7 and automate routine updates #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,14 +18,14 @@ jobs: | |
| name: Enable auto-merge | ||
| runs-on: ubuntu-latest | ||
| if: > | ||
| github.event.pull_request.user.login == 'dependabot[bot]' || | ||
| (github.event.pull_request.user.login == 'dependabot[bot]' && contains(github.event.pull_request.title, 'minor-and-patch')) || | ||
| ( | ||
| github.event.pull_request.user.login == 'github-actions[bot]' && | ||
| startsWith(github.event.pull_request.head.ref, 'release-please--') | ||
|
Comment on lines
22
to
24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When AGENTS.md reference: AGENTS.md:L70-L73 Useful? React with 👍 / 👎. |
||
| ) | ||
| steps: | ||
| - name: Enable auto-merge (merge commit) | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| GH_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }} | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛑 Security Risk: Using |
||
| PR_URL: ${{ github.event.pull_request.html_url }} | ||
| run: gh pr merge --auto --merge "$PR_URL" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "$schema": "https://context7.com/schema/context7.json", | ||
| "projectTitle": "Agentic Fabric", | ||
| "description": "Framework-agnostic discovery, runtime selection, and orchestration for YAML-defined agent fabrics.", | ||
| "branch": "main", | ||
| "folders": ["docs", "packages/agentic-fabric", "packages/pytest-agentic-fabric"], | ||
| "excludeFolders": [".agent-state", "**/tests", "**/__pycache__", "docs/dist", "docs/node_modules"], | ||
| "excludeFiles": ["CHANGELOG.md"], | ||
| "rules": [ | ||
| "Keep the ownership chain ExtendedData -> VendorData -> AgenticData; agentic-fabric must not bypass vendor-fabric provider dispatch.", | ||
| "Keep optional framework imports lazy and registry-backed.", | ||
| "Route provider-backed tools through vendor-fabric capabilities rather than vendor SDKs or the Go binding directly.", | ||
| "Keep public documentation, package READMEs, examples, tests, and implementation aligned." | ||
| ] | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For non-major GitHub Actions updates,
.github/dependabot.ymlputs the dependencies in theactionsgroup because the precedingmajorgroup only accepts major updates. Those grouped PR titles identify theactionsgroup rather thanminor-and-patch, so this predicate—and the matching predicates inci.ymlande2e-ollama.yml—remains false for every routine Actions update. Match theactionsgroup here as well, or rename it consistently, so the newly separated non-major updates actually receive the intended skip-and-automerge policy.Useful? React with 👍 / 👎.