Skip to content
Open
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
15 changes: 5 additions & 10 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,15 @@
"version": "v8",
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
},
"actions/github-script@v9": {
"actions/github-script@v9.0.0": {
"repo": "actions/github-script",
"version": "v9",
"version": "v9.0.0",
"sha": "3a2844b7e9c422d3c10d287c895573f7108da1b3"
},
"github/gh-aw-actions/setup@v0.71.1": {
"github/gh-aw-actions/setup@v0.72.1": {
"repo": "github/gh-aw-actions/setup",
"version": "v0.71.1",
"sha": "239aec45b78c8799417efdd5bc6d8cc036629ec1"
},
"github/gh-aw-actions/setup@v0.68.3": {
"repo": "github/gh-aw-actions/setup",
"version": "v0.68.3",
"sha": "ba90f2186d7ad780ec640f364005fa24e797b360"
"version": "v0.72.1",
"sha": "bc56a0cad2f450c562810785ef38649c04db812a"
},
"github/gh-aw/actions/setup@v0.67.2": {
"repo": "github/gh-aw/actions/setup",
Expand Down
320 changes: 240 additions & 80 deletions .github/workflows/agentic-state-machine.lock.yml

Large diffs are not rendered by default.

262 changes: 189 additions & 73 deletions .github/workflows/aw-auto-update.lock.yml

Large diffs are not rendered by default.

320 changes: 240 additions & 80 deletions .github/workflows/labelops-flake-fix.lock.yml

Large diffs are not rendered by default.

315 changes: 235 additions & 80 deletions .github/workflows/labelops-pr-maintenance.lock.yml

Large diffs are not rendered by default.

286 changes: 209 additions & 77 deletions .github/workflows/labelops-pr-security-scan.lock.yml

Large diffs are not rendered by default.

276 changes: 201 additions & 75 deletions .github/workflows/regression-pr-shepherd.lock.yml

Large diffs are not rendered by default.

337 changes: 234 additions & 103 deletions .github/workflows/repo-assist.lock.yml

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions .github/workflows/repo-assist.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ steps:
run: |
mkdir -p /tmp/gh-aw

# Fetch open issues with labels (up to 500)
gh issue list --state open --limit 500 --json number,labels > /tmp/gh-aw/issues.json
# Fetch open issues with labels (up to 200, reduced from 500 to avoid DIFC proxy timeouts)
gh issue list --state open --limit 200 --json number,labels > /tmp/gh-aw/issues.json || echo '[]' > /tmp/gh-aw/issues.json

# Fetch open PRs with titles (up to 200)
gh pr list --state open --limit 200 --json number,title > /tmp/gh-aw/prs.json
# Fetch open PRs with titles (up to 100, reduced from 200 to avoid DIFC proxy timeouts)
gh pr list --state open --limit 100 --json number,title > /tmp/gh-aw/prs.json || echo '[]' > /tmp/gh-aw/prs.json

# Compute task weights and select two tasks for this run
python3 - << 'EOF'
Expand Down
Loading