claude-gh-ticket-gen 1.0.4 → 1.0.5
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/.github/workflows/publish.yml +38 -0
- package/README.md +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
name: Publish Package to npm
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*' # Triggers on version tags like v1.0.5, v2.0.0, etc.
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write # Required for OIDC trusted publishing
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
publish:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout code
|
|
17
|
+
uses: actions/checkout@v4
|
|
18
|
+
|
|
19
|
+
- name: Setup Node.js
|
|
20
|
+
uses: actions/setup-node@v4
|
|
21
|
+
with:
|
|
22
|
+
node-version: '20' # LTS version
|
|
23
|
+
registry-url: 'https://registry.npmjs.org'
|
|
24
|
+
|
|
25
|
+
- name: Install dependencies
|
|
26
|
+
run: npm ci
|
|
27
|
+
|
|
28
|
+
- name: Build TypeScript
|
|
29
|
+
run: npm run build
|
|
30
|
+
|
|
31
|
+
# Skip tests for now - uncomment when tests are implemented
|
|
32
|
+
# - name: Run tests
|
|
33
|
+
# run: npm test
|
|
34
|
+
|
|
35
|
+
- name: Publish to npm
|
|
36
|
+
run: npm publish --provenance --access public
|
|
37
|
+
env:
|
|
38
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/README.md
CHANGED
|
@@ -155,6 +155,10 @@ claude-ticket-gen config set defaultRepo owner/repo
|
|
|
155
155
|
claude-ticket-gen config reset
|
|
156
156
|
```
|
|
157
157
|
|
|
158
|
+
**Configuration List Example:**
|
|
159
|
+
|
|
160
|
+

|
|
161
|
+
|
|
158
162
|
#### `init`
|
|
159
163
|
|
|
160
164
|
Interactive setup wizard.
|