Skip to content

Commit 2c58c2b

Browse files
committed
chore: expose repair commit before verification
1 parent 4dd996a commit 2c58c2b

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/agent-terminal-settlement-command.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,26 @@ jobs:
3232
working-directory: work
3333
run: python3 ../repair-source/.github/repair/terminal-settlement.py
3434

35+
- name: Commit repair for visible verification
36+
working-directory: work
37+
shell: bash
38+
run: |
39+
if git diff --quiet; then
40+
exit 0
41+
fi
42+
git config user.name "twoimo"
43+
git config user.email "32544727+twoimo@users.noreply.github.com"
44+
git add packages/coding-agent/src/sdk/bus/telegram-daemon.ts packages/coding-agent/test/notifications-telegram-daemon.test.ts
45+
git commit -m "fix(notifications): retire rejected legacy terminals"
46+
git push origin HEAD:fix/telegram-tool-activity-terminal-rejection
47+
3548
- name: Install dependencies
3649
working-directory: work
3750
run: bun install --frozen-lockfile
3851

39-
- name: Format changed files
52+
- name: Format check
4053
working-directory: work
41-
run: bunx biome check --write packages/coding-agent/src/sdk/bus/telegram-daemon.ts packages/coding-agent/test/notifications-telegram-daemon.test.ts
54+
run: bunx biome check packages/coding-agent/src/sdk/bus/telegram-daemon.ts packages/coding-agent/test/notifications-telegram-daemon.test.ts
4255

4356
- name: Run focused regressions
4457
working-directory: work
@@ -47,16 +60,3 @@ jobs:
4760
- name: Run package check
4861
working-directory: work
4962
run: bun --cwd=packages/coding-agent run check
50-
51-
- name: Commit verified repair
52-
working-directory: work
53-
shell: bash
54-
run: |
55-
if git diff --quiet; then
56-
exit 0
57-
fi
58-
git config user.name "twoimo"
59-
git config user.email "32544727+twoimo@users.noreply.github.com"
60-
git add packages/coding-agent/src/sdk/bus/telegram-daemon.ts packages/coding-agent/test/notifications-telegram-daemon.test.ts
61-
git commit -m "fix(notifications): retire rejected legacy terminals"
62-
git push origin HEAD:fix/telegram-tool-activity-terminal-rejection

0 commit comments

Comments
 (0)