@codyswann/lisa 1.54.5 → 1.54.7
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/cdk/copy-overwrite/tsconfig.json +3 -1
- package/cdk/create-only/tsconfig.local.json +1 -4
- package/cdk/package-lisa/package.lisa.json +1 -1
- package/expo/copy-overwrite/tsconfig.json +3 -1
- package/expo/package-lisa/package.lisa.json +1 -1
- package/nestjs/copy-overwrite/tsconfig.json +3 -1
- package/nestjs/package-lisa/package.lisa.json +1 -1
- package/package.json +2 -2
- package/tsconfig/build.json +1 -2
- package/tsconfig/cdk.json +1 -2
- package/tsconfig/eslint.json +1 -3
- package/tsconfig/expo.json +1 -3
- package/tsconfig/nestjs.json +1 -3
- package/tsconfig/spec.json +1 -2
- package/tsconfig/typescript.json +1 -3
- package/typescript/copy-overwrite/tsconfig.json +3 -1
- package/typescript/create-only/.github/workflows/auto-update-pr-branches-dispatch.yml +9 -51
- package/typescript/package-lisa/package.lisa.json +1 -1
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": ["@codyswann/lisa/tsconfig/expo", "./tsconfig.local.json"]
|
|
2
|
+
"extends": ["@codyswann/lisa/tsconfig/expo", "./tsconfig.local.json"],
|
|
3
|
+
"include": ["**/*.ts", "**/*.tsx", "nativewind-env.d.ts"],
|
|
4
|
+
"exclude": ["node_modules", "dist", "web-build", "components/ui"]
|
|
3
5
|
}
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"devDependencies": {
|
|
114
114
|
"@babel/core": "^7.20.0",
|
|
115
115
|
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
|
116
|
-
"@codyswann/lisa": "^1.
|
|
116
|
+
"@codyswann/lisa": "^1.54.6",
|
|
117
117
|
"@graphql-codegen/cli": "^6.1.0",
|
|
118
118
|
"@graphql-codegen/typescript": "^4.1.6",
|
|
119
119
|
"@graphql-codegen/typescript-operations": "^4.4.2",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"typeorm-naming-strategies": "^4.1.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@codyswann/lisa": "^1.
|
|
67
|
+
"@codyswann/lisa": "^1.54.6",
|
|
68
68
|
"@graphql-codegen/cli": "^6.1.0",
|
|
69
69
|
"@graphql-codegen/typescript": "^4.1.6",
|
|
70
70
|
"@graphql-codegen/typescript-operations": "^4.4.2",
|
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.
|
|
75
|
+
"version": "1.54.7",
|
|
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": {
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
"typescript-eslint": "^8.0.0"
|
|
172
172
|
},
|
|
173
173
|
"devDependencies": {
|
|
174
|
-
"@codyswann/lisa": "^1.
|
|
174
|
+
"@codyswann/lisa": "^1.54.6"
|
|
175
175
|
},
|
|
176
176
|
"type": "module"
|
|
177
177
|
}
|
package/tsconfig/build.json
CHANGED
package/tsconfig/cdk.json
CHANGED
package/tsconfig/eslint.json
CHANGED
package/tsconfig/expo.json
CHANGED
package/tsconfig/nestjs.json
CHANGED
package/tsconfig/spec.json
CHANGED
package/tsconfig/typescript.json
CHANGED
|
@@ -15,54 +15,12 @@ permissions:
|
|
|
15
15
|
id-token: write
|
|
16
16
|
|
|
17
17
|
jobs:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
uses: anthropics/claude-code-action@v1
|
|
28
|
-
continue-on-error: true
|
|
29
|
-
with:
|
|
30
|
-
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
|
31
|
-
prompt: |
|
|
32
|
-
Update all open pull request branches targeting "${{ github.event.client_payload.ref_name }}" in "${{ github.event.client_payload.repo_full_name }}".
|
|
33
|
-
|
|
34
|
-
Run this command:
|
|
35
|
-
```bash
|
|
36
|
-
prs=$(gh pr list --repo "${{ github.event.client_payload.repo_full_name }}" --base "${{ github.event.client_payload.ref_name }}" --state open --json number --jq '.[].number')
|
|
37
|
-
for pr in $prs; do
|
|
38
|
-
echo "Updating PR #$pr..."
|
|
39
|
-
gh api -X PUT "repos/${{ github.event.client_payload.repo_full_name }}/pulls/$pr/update-branch" -f update_method=merge || echo "PR #$pr update failed or already up to date"
|
|
40
|
-
done
|
|
41
|
-
```
|
|
42
|
-
claude_args: |
|
|
43
|
-
--allowedTools "Bash(*)"
|
|
44
|
-
--max-turns 3
|
|
45
|
-
|
|
46
|
-
update-single-pr:
|
|
47
|
-
name: Update PR #${{ github.event.client_payload.pr_number }}
|
|
48
|
-
if: github.event.action == 'auto-update-pr-branch'
|
|
49
|
-
runs-on: ubuntu-latest
|
|
50
|
-
steps:
|
|
51
|
-
- name: Checkout
|
|
52
|
-
uses: actions/checkout@v6
|
|
53
|
-
|
|
54
|
-
- name: Update PR branch
|
|
55
|
-
uses: anthropics/claude-code-action@v1
|
|
56
|
-
continue-on-error: true
|
|
57
|
-
with:
|
|
58
|
-
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
|
59
|
-
prompt: |
|
|
60
|
-
Update pull request #${{ github.event.client_payload.pr_number }} branch in "${{ github.event.client_payload.repo_full_name }}".
|
|
61
|
-
|
|
62
|
-
Run this command:
|
|
63
|
-
```bash
|
|
64
|
-
gh api -X PUT "repos/${{ github.event.client_payload.repo_full_name }}/pulls/${{ github.event.client_payload.pr_number }}/update-branch" -f update_method=merge
|
|
65
|
-
```
|
|
66
|
-
claude_args: |
|
|
67
|
-
--allowedTools "Bash(*)"
|
|
68
|
-
--max-turns 3
|
|
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 }}
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"prepare": "node -e \"if (process.env.INIT_CWD && process.env.INIT_CWD.includes('.serverless')) { process.exit(0); }\" && husky install || true"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@codyswann/lisa": "^1.
|
|
20
|
+
"@codyswann/lisa": "^1.54.6"
|
|
21
21
|
},
|
|
22
22
|
"resolutions": {
|
|
23
23
|
"@isaacs/brace-expansion": "^5.0.1",
|