spets 0.1.12 → 0.1.13

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -350,7 +350,7 @@ jobs:
350
350
 
351
351
  - name: Create and checkout branch
352
352
  run: |
353
- git remote set-url origin https://x-access-token:${gh("secrets.PAT_TOKEN")}@github.com/${gh("github.repository")}.git
353
+ git remote set-url origin https://x-access-token:${gh("secrets.GITHUB_TOKEN")}@github.com/${gh("github.repository")}.git
354
354
  git checkout -b ${gh("steps.parse.outputs.branch")}
355
355
  git push -u origin ${gh("steps.parse.outputs.branch")}
356
356
 
@@ -392,7 +392,7 @@ jobs:
392
392
 
393
393
  - name: Push changes
394
394
  run: |
395
- git remote set-url origin https://x-access-token:${gh("secrets.PAT_TOKEN")}@github.com/${gh("github.repository")}.git
395
+ git remote set-url origin https://x-access-token:${gh("secrets.GITHUB_TOKEN")}@github.com/${gh("github.repository")}.git
396
396
  git add -A
397
397
  git diff --staged --quiet || git commit -m "Spets: Start workflow for #${gh("github.event.issue.number")}"
398
398
  git push
@@ -508,11 +508,11 @@ jobs:
508
508
  env:
509
509
  COMMENT: ${gh("github.event.comment.body")}
510
510
  CLAUDE_CODE_OAUTH_TOKEN: ${gh("secrets.CLAUDE_CODE_OAUTH_TOKEN")}
511
- GH_TOKEN: ${gh("secrets.PAT_TOKEN")}
511
+ GH_TOKEN: ${gh("secrets.GITHUB_TOKEN")}
512
512
 
513
513
  - name: Push changes
514
514
  run: |
515
- git remote set-url origin https://x-access-token:${gh("secrets.PAT_TOKEN")}@github.com/${gh("github.repository")}.git
515
+ git remote set-url origin https://x-access-token:${gh("secrets.GITHUB_TOKEN")}@github.com/${gh("github.repository")}.git
516
516
  git add -A
517
517
  git diff --staged --quiet || git commit -m "Spets: Update from #${gh("github.event.issue.number")}"
518
518
  git push
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spets",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Spec Driven Development Execution Framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",