@codyswann/lisa 1.57.2 → 1.58.0
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 +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/rails/create-only/.github/workflows/claude-nightly-jira-triage.yml +34 -0
- package/typescript/create-only/.github/workflows/claude-nightly-jira-triage.yml +34 -0
package/package.json
CHANGED
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"axios": ">=1.13.5"
|
|
73
73
|
},
|
|
74
74
|
"name": "@codyswann/lisa",
|
|
75
|
-
"version": "1.
|
|
75
|
+
"version": "1.58.0",
|
|
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,34 @@
|
|
|
1
|
+
# This file was created by Lisa on first setup.
|
|
2
|
+
# You can customize this file — Lisa will not overwrite it.
|
|
3
|
+
|
|
4
|
+
name: Claude Nightly Jira Triage
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
schedule:
|
|
8
|
+
- cron: '0 6 * * 1-5'
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
inputs:
|
|
11
|
+
ticket_key:
|
|
12
|
+
description: 'Specific Jira ticket key to triage (leave empty for batch mode)'
|
|
13
|
+
required: false
|
|
14
|
+
type: string
|
|
15
|
+
ticket_count:
|
|
16
|
+
description: 'Number of untriaged tickets to process in batch mode'
|
|
17
|
+
required: false
|
|
18
|
+
default: '5'
|
|
19
|
+
type: string
|
|
20
|
+
|
|
21
|
+
permissions:
|
|
22
|
+
contents: read
|
|
23
|
+
issues: write
|
|
24
|
+
id-token: write
|
|
25
|
+
|
|
26
|
+
jobs:
|
|
27
|
+
triage:
|
|
28
|
+
uses: CodySwannGT/lisa/.github/workflows/reusable-claude-nightly-jira-triage.yml@main
|
|
29
|
+
with:
|
|
30
|
+
ticket_key: ${{ github.event.inputs.ticket_key || '' }}
|
|
31
|
+
ticket_count: ${{ fromJSON(github.event.inputs.ticket_count || '5') }}
|
|
32
|
+
secrets:
|
|
33
|
+
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
|
34
|
+
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# This file was created by Lisa on first setup.
|
|
2
|
+
# You can customize this file — Lisa will not overwrite it.
|
|
3
|
+
|
|
4
|
+
name: Claude Nightly Jira Triage
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
schedule:
|
|
8
|
+
- cron: '0 6 * * 1-5'
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
inputs:
|
|
11
|
+
ticket_key:
|
|
12
|
+
description: 'Specific Jira ticket key to triage (leave empty for batch mode)'
|
|
13
|
+
required: false
|
|
14
|
+
type: string
|
|
15
|
+
ticket_count:
|
|
16
|
+
description: 'Number of untriaged tickets to process in batch mode'
|
|
17
|
+
required: false
|
|
18
|
+
default: '5'
|
|
19
|
+
type: string
|
|
20
|
+
|
|
21
|
+
permissions:
|
|
22
|
+
contents: read
|
|
23
|
+
issues: write
|
|
24
|
+
id-token: write
|
|
25
|
+
|
|
26
|
+
jobs:
|
|
27
|
+
triage:
|
|
28
|
+
uses: CodySwannGT/lisa/.github/workflows/reusable-claude-nightly-jira-triage.yml@main
|
|
29
|
+
with:
|
|
30
|
+
ticket_key: ${{ github.event.inputs.ticket_key || '' }}
|
|
31
|
+
ticket_count: ${{ fromJSON(github.event.inputs.ticket_count || '5') }}
|
|
32
|
+
secrets:
|
|
33
|
+
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
|
|
34
|
+
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
|