@codyswann/lisa 1.54.4 → 1.54.6

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
@@ -72,7 +72,7 @@
72
72
  "axios": ">=1.13.5"
73
73
  },
74
74
  "name": "@codyswann/lisa",
75
- "version": "1.54.4",
75
+ "version": "1.54.6",
76
76
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
77
77
  "main": "dist/index.js",
78
78
  "exports": {
@@ -0,0 +1,26 @@
1
+ # This file was created by Lisa on first setup.
2
+ # You can customize this file — Lisa will not overwrite it.
3
+
4
+ name: Auto-update PR branches (Dispatch Handler)
5
+
6
+ on:
7
+ repository_dispatch:
8
+ types:
9
+ - auto-update-pr-branches
10
+ - auto-update-pr-branch
11
+
12
+ permissions:
13
+ contents: write
14
+ pull-requests: write
15
+ id-token: write
16
+
17
+ jobs:
18
+ dispatch:
19
+ uses: CodySwannGT/lisa/.github/workflows/reusable-auto-update-pr-branches-dispatch.yml@main
20
+ with:
21
+ action: ${{ github.event.action }}
22
+ ref_name: ${{ github.event.client_payload.ref_name || '' }}
23
+ repo_full_name: ${{ github.event.client_payload.repo_full_name }}
24
+ pr_number: ${{ github.event.client_payload.pr_number || 0 }}
25
+ secrets:
26
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}