github-delivery-os 1.0.2 → 1.0.3

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.
@@ -0,0 +1,46 @@
1
+ # Deploy docs/ to GitHub Pages
2
+ # Requires: Settings → Pages → Source: GitHub Actions
3
+
4
+ name: Deploy to GitHub Pages
5
+
6
+ on:
7
+ push:
8
+ branches: [main]
9
+ workflow_dispatch:
10
+
11
+ permissions:
12
+ contents: read
13
+ pages: write
14
+ id-token: write
15
+
16
+ concurrency:
17
+ group: pages
18
+ cancel-in-progress: false
19
+
20
+ env:
21
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
22
+
23
+ jobs:
24
+ deploy:
25
+ runs-on: ubuntu-latest
26
+ environment:
27
+ name: github-pages
28
+ url: ${{ steps.deployment.outputs.page_url }}
29
+ steps:
30
+ - name: Opt into Node.js 24
31
+ run: echo "FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true" >> $GITHUB_ENV
32
+
33
+ - name: Checkout
34
+ uses: actions/checkout@v6
35
+
36
+ - name: Setup Pages
37
+ uses: actions/configure-pages@v5
38
+
39
+ - name: Upload artifact
40
+ uses: actions/upload-pages-artifact@v4
41
+ with:
42
+ path: ./docs
43
+
44
+ - name: Deploy to GitHub Pages
45
+ id: deployment
46
+ uses: actions/deploy-pages@v4
@@ -15,7 +15,7 @@ jobs:
15
15
  release:
16
16
  runs-on: ubuntu-latest
17
17
  steps:
18
- - uses: actions/checkout@v4
18
+ - uses: actions/checkout@v6
19
19
  with:
20
20
  fetch-depth: 0
21
21
 
package/README.md CHANGED
@@ -35,7 +35,7 @@ From your repo root. Add `--with-labels` to create labels via `gh` CLI (requires
35
35
  **Alternative — clone and run script:**
36
36
 
37
37
  ```bash
38
- git clone https://github.com/jkaweesi22/github-delivery-operating-system
38
+ git clone https://github.com/Phaneroo/github-delivery-operating-system
39
39
  cd github-delivery-operating-system
40
40
 
41
41
  # New install or repo with existing workflows — adds only missing files (safe)
@@ -52,9 +52,10 @@ cd github-delivery-operating-system
52
52
 
53
53
  **Other commands:**
54
54
  ```bash
55
- npx github-delivery-os status . # Show what's installed
56
- npx github-delivery-os uninstall . # Remove workflows
55
+ npx github-delivery-os status . # Show what's installed
56
+ npx github-delivery-os uninstall . # Remove workflows
57
57
  npx github-delivery-os uninstall --with-templates . # Remove workflows + templates
58
+ npx github-delivery-os uninstall --dry-run . # Preview (no changes)
58
59
  ```
59
60
 
60
61
  **What gets installed:**
@@ -100,7 +101,7 @@ When you open an issue using the **Sprint Planning** template with a title like
100
101
 
101
102
  | Document | Description |
102
103
  |----------|-------------|
103
- | **[Landing page & quick start](https://jkaweesi22.github.io/github-delivery-operating-system/)** | Overview, one-command install, features |
104
+ | **[Landing page & quick start](https://phaneroo.github.io/github-delivery-operating-system/)** | Overview, one-command install, features |
104
105
  | [Consumer Setup](docs/consumer-setup.md) | Installation, configuration, variables, labels, Telegram, uninstall |
105
106
  | [How To](docs/how-to.md) | Create sprints, request releases, approve, report bugs, QA requests |
106
107
  | [Architecture](docs/architecture.md) | Workflows, templates, data flow |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-delivery-os",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A GitHub-native Delivery Governance Framework for structured sprint execution, QA review, and collaborative production release control.",
5
5
  "main": "src/install.js",
6
6
  "bin": {
@@ -28,11 +28,11 @@
28
28
  "license": "MIT",
29
29
  "repository": {
30
30
  "type": "git",
31
- "url": "https://github.com/jkaweesi22/github-delivery-operating-system"
31
+ "url": "https://github.com/Phaneroo/github-delivery-operating-system"
32
32
  },
33
- "homepage": "https://jkaweesi22.github.io/github-delivery-operating-system/",
33
+ "homepage": "https://phaneroo.github.io/github-delivery-operating-system/",
34
34
  "bugs": {
35
- "url": "https://github.com/jkaweesi22/github-delivery-operating-system/issues"
35
+ "url": "https://github.com/Phaneroo/github-delivery-operating-system/issues"
36
36
  },
37
37
  "files": [
38
38
  "bin",
package/src/install.js CHANGED
@@ -216,7 +216,7 @@ function runInstall(options) {
216
216
  console.log(' 4. Copy templates: re-run with --with-templates');
217
217
  }
218
218
  console.log('');
219
- console.log('See https://jkaweesi22.github.io/github-delivery-operating-system/ for full docs.');
219
+ console.log('See https://phaneroo.github.io/github-delivery-operating-system/ for full docs.');
220
220
  } else {
221
221
  if (dryRun) {
222
222
  console.log('Dry run complete. No files were changed.');