Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Internal: Tests"
on:
pull_request:
paths:
- ".github/workflows/gh-aw-fragments/**"
- "tests/**"
- "pyproject.toml"
push:
branches: [main]
paths:
- ".github/workflows/gh-aw-fragments/**"
- "tests/**"
- "pyproject.toml"

jobs:
test:
name: pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: astral-sh/setup-uv@v6

- name: Run tests
run: uv run --extra test pytest tests/ -v
42 changes: 39 additions & 3 deletions .github/workflows/downstream-users.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 39 additions & 3 deletions .github/workflows/gh-aw-bug-exterminator.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 39 additions & 3 deletions .github/workflows/gh-aw-code-duplication-fixer.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 39 additions & 3 deletions .github/workflows/gh-aw-code-simplifier.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .github/workflows/gh-aw-fragments/pr-context.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ steps:
comments(first: 100) {
nodes {
id
databaseId
body
author { login }
createdAt
Expand Down Expand Up @@ -105,7 +106,7 @@ steps:
| `files.json` | Changed files array — each entry has `filename`, `status`, `additions`, `deletions`, `patch` |
| `diffs/<path>.diff` | Per-file diffs — one file per changed file, mirroring the repo path under `diffs/` |
| `reviews.json` | Prior review submissions — author, state (APPROVED/CHANGES_REQUESTED/COMMENTED), body |
| `review_comments.json` | All review threads (GraphQL) — each thread has `id`, `isResolved`, `isOutdated`, `path`, `line`, and nested `comments` with body/author |
| `review_comments.json` | All review threads (GraphQL) — each thread has `id` (node ID for resolving), `isResolved`, `isOutdated`, `path`, `line`, and nested `comments` with `id`, `databaseId` (numeric REST ID for replies), body/author |
| `threads/<path>.json` | Per-file review threads — one file per changed file with existing threads, mirroring the repo path under `threads/` |
| `comments.json` | PR discussion comments (not inline) |
| `issue-{N}.json` | Linked issue details (one file per linked issue, if any) |
Expand Down
Loading
Loading