@kody-ade/kody-engine-lite 0.1.15 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine-lite",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Autonomous SDLC pipeline: Kody orchestration + Claude Code + LiteLLM",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -176,6 +176,8 @@ jobs:
176
176
 
177
177
  - name: Checkout PR branch (for fix/rerun on PRs)
178
178
  if: github.event.issue.pull_request && (needs.parse.outputs.mode == 'fix' || needs.parse.outputs.mode == 'rerun')
179
+ env:
180
+ GH_TOKEN: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}
179
181
  run: |
180
182
  PR_NUM="${{ github.event.issue.number }}"
181
183
  PR_BRANCH=$(gh pr view "$PR_NUM" --json headRefName -q '.headRefName')