Skip to content

Commit b82bf2c

Browse files
committed
Rename to io
1 parent 7d57fb6 commit b82bf2c

8 files changed

Lines changed: 36 additions & 35 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ What actually happened.
3030

3131
```yaml
3232
# Paste your workflow YAML here (remove sensitive data like API keys)
33-
- uses: versioner-app/versioner-github-action@v1
33+
- uses: versioner-io/versioner-github-action@v1
3434
with:
3535
api_url: https://api.versioner.dev
3636
# ... other inputs

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Describe how you envision this feature working.
2323

2424
**Example workflow configuration:**
2525
```yaml
26-
- uses: versioner-app/versioner-github-action@v1
26+
- uses: versioner-io/versioner-github-action@v1
2727
with:
2828
# Show how the new feature would be used
2929
new_feature: value

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ Thumbs.db
3131
# Misc
3232
*.bak
3333
*.tmp
34+
.notes

EXAMPLES.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: ./deploy.sh production
3535

3636
- name: Track deployment
37-
uses: versioner-app/versioner-github-action@v1
37+
uses: versioner-io/versioner-github-action@v1
3838
with:
3939
api_url: ${{ secrets.VERSIONER_API_URL }}
4040
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -60,7 +60,7 @@ jobs:
6060
steps:
6161
- uses: actions/checkout@v4
6262
- run: ./deploy.sh dev
63-
- uses: versioner-app/versioner-github-action@v1
63+
- uses: versioner-io/versioner-github-action@v1
6464
with:
6565
api_url: ${{ secrets.VERSIONER_API_URL }}
6666
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -74,7 +74,7 @@ jobs:
7474
steps:
7575
- uses: actions/checkout@v4
7676
- run: ./deploy.sh staging
77-
- uses: versioner-app/versioner-github-action@v1
77+
- uses: versioner-io/versioner-github-action@v1
7878
with:
7979
api_url: ${{ secrets.VERSIONER_API_URL }}
8080
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -89,7 +89,7 @@ jobs:
8989
steps:
9090
- uses: actions/checkout@v4
9191
- run: ./deploy.sh production
92-
- uses: versioner-app/versioner-github-action@v1
92+
- uses: versioner-io/versioner-github-action@v1
9393
with:
9494
api_url: ${{ secrets.VERSIONER_API_URL }}
9595
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -126,7 +126,7 @@ jobs:
126126
./deploy.sh production
127127
128128
- name: Track deployment
129-
uses: versioner-app/versioner-github-action@v1
129+
uses: versioner-io/versioner-github-action@v1
130130
with:
131131
api_url: ${{ secrets.VERSIONER_API_URL }}
132132
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -163,7 +163,7 @@ jobs:
163163
run: npm publish
164164

165165
- name: Track deployment
166-
uses: versioner-app/versioner-github-action@v1
166+
uses: versioner-io/versioner-github-action@v1
167167
with:
168168
api_url: ${{ secrets.VERSIONER_API_URL }}
169169
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -208,7 +208,7 @@ jobs:
208208
echo "SECONDS=$DURATION" >> $GITHUB_OUTPUT
209209
210210
- name: Track deployment
211-
uses: versioner-app/versioner-github-action@v1
211+
uses: versioner-io/versioner-github-action@v1
212212
with:
213213
api_url: ${{ secrets.VERSIONER_API_URL }}
214214
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -229,7 +229,7 @@ jobs:
229229
230230
```yaml
231231
- name: Track deployment with infrastructure metadata
232-
uses: versioner-app/versioner-github-action@v1
232+
uses: versioner-io/versioner-github-action@v1
233233
with:
234234
api_url: ${{ secrets.VERSIONER_API_URL }}
235235
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -270,7 +270,7 @@ jobs:
270270
continue-on-error: true
271271

272272
- name: Track deployment status
273-
uses: versioner-app/versioner-github-action@v1
273+
uses: versioner-io/versioner-github-action@v1
274274
with:
275275
api_url: ${{ secrets.VERSIONER_API_URL }}
276276
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -305,7 +305,7 @@ jobs:
305305
- uses: actions/checkout@v4
306306

307307
- name: Start deployment tracking
308-
uses: versioner-app/versioner-github-action@v1
308+
uses: versioner-io/versioner-github-action@v1
309309
with:
310310
api_url: ${{ secrets.VERSIONER_API_URL }}
311311
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -319,7 +319,7 @@ jobs:
319319

320320
- name: Update deployment status
321321
if: always()
322-
uses: versioner-app/versioner-github-action@v1
322+
uses: versioner-io/versioner-github-action@v1
323323
with:
324324
api_url: ${{ secrets.VERSIONER_API_URL }}
325325
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -358,7 +358,7 @@ jobs:
358358
fi
359359
360360
- name: Track deployment
361-
uses: versioner-app/versioner-github-action@v1
361+
uses: versioner-io/versioner-github-action@v1
362362
with:
363363
api_url: ${{ secrets.VERSIONER_API_URL }}
364364
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -385,7 +385,7 @@ jobs:
385385
- run: ./deploy.sh production
386386

387387
- name: Track deployment
388-
uses: versioner-app/versioner-github-action@v1
388+
uses: versioner-io/versioner-github-action@v1
389389
with:
390390
api_url: ${{ secrets.VERSIONER_API_URL }}
391391
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -418,7 +418,7 @@ jobs:
418418
run: ./deploy.sh production ${{ matrix.region }}
419419

420420
- name: Track deployment
421-
uses: versioner-app/versioner-github-action@v1
421+
uses: versioner-io/versioner-github-action@v1
422422
with:
423423
api_url: ${{ secrets.VERSIONER_API_URL }}
424424
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -454,7 +454,7 @@ jobs:
454454
run: ./deploy-${{ matrix.service }}.sh production
455455

456456
- name: Track deployment
457-
uses: versioner-app/versioner-github-action@v1
457+
uses: versioner-io/versioner-github-action@v1
458458
with:
459459
api_url: ${{ secrets.VERSIONER_API_URL }}
460460
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -483,7 +483,7 @@ jobs:
483483

484484
- name: Track deployment
485485
id: versioner
486-
uses: versioner-app/versioner-github-action@v1
486+
uses: versioner-io/versioner-github-action@v1
487487
with:
488488
api_url: ${{ secrets.VERSIONER_API_URL }}
489489
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -542,7 +542,7 @@ jobs:
542542
steps:
543543
- uses: actions/checkout@v4
544544
- run: ./deploy-api.sh production
545-
- uses: versioner-app/versioner-github-action@v1
545+
- uses: versioner-io/versioner-github-action@v1
546546
with:
547547
api_url: ${{ secrets.VERSIONER_API_URL }}
548548
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -557,7 +557,7 @@ jobs:
557557
steps:
558558
- uses: actions/checkout@v4
559559
- run: ./deploy-web.sh production
560-
- uses: versioner-app/versioner-github-action@v1
560+
- uses: versioner-io/versioner-github-action@v1
561561
with:
562562
api_url: ${{ secrets.VERSIONER_API_URL }}
563563
api_key: ${{ secrets.VERSIONER_API_KEY }}

QUICKSTART.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
# Track the deployment
4141
- name: Track deployment in Versioner
42-
uses: versioner-app/versioner-github-action@v1
42+
uses: versioner-io/versioner-github-action@v1
4343
with:
4444
api_url: ${{ secrets.VERSIONER_API_URL }}
4545
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -82,5 +82,5 @@ The action automatically captures:
8282

8383
- 📖 [Full Documentation](./README.md)
8484
- 💡 [Usage Examples](./EXAMPLES.md)
85-
- 🐛 [Report Issues](https://github.com/versioner-app/versioner-github-action/issues)
85+
- 🐛 [Report Issues](https://github.com/versioner-io/versioner-github-action/issues)
8686
- 📧 [Email Support](mailto:support@versioner.dev)

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Versioner GitHub Action
22

3-
A GitHub Action for reporting deployment events to [Versioner](https://github.com/versioner-app/versioner), a deployment tracking and visibility system.
3+
A GitHub Action for reporting deployment events to [Versioner](https://github.com/versioner-io/versioner), a deployment tracking and visibility system.
44

55
## 📌 What is Versioner?
66

@@ -40,7 +40,7 @@ jobs:
4040
./deploy.sh production
4141
4242
- name: Report deployment to Versioner
43-
uses: versioner-app/versioner-github-action@v1
43+
uses: versioner-io/versioner-github-action@v1
4444
with:
4545
api_url: https://api.versioner.dev
4646
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -75,7 +75,7 @@ jobs:
7575

7676
```yaml
7777
- name: Report deployment
78-
uses: versioner-app/versioner-github-action@v1
78+
uses: versioner-io/versioner-github-action@v1
7979
with:
8080
api_url: ${{ secrets.VERSIONER_API_URL }}
8181
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -92,7 +92,7 @@ jobs:
9292
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
9393
9494
- name: Report deployment
95-
uses: versioner-app/versioner-github-action@v1
95+
uses: versioner-io/versioner-github-action@v1
9696
with:
9797
api_url: ${{ secrets.VERSIONER_API_URL }}
9898
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -105,7 +105,7 @@ jobs:
105105

106106
```yaml
107107
- name: Report deployment with metadata
108-
uses: versioner-app/versioner-github-action@v1
108+
uses: versioner-io/versioner-github-action@v1
109109
with:
110110
api_url: ${{ secrets.VERSIONER_API_URL }}
111111
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -129,7 +129,7 @@ jobs:
129129
continue-on-error: true
130130
131131
- name: Report deployment status
132-
uses: versioner-app/versioner-github-action@v1
132+
uses: versioner-io/versioner-github-action@v1
133133
with:
134134
api_url: ${{ secrets.VERSIONER_API_URL }}
135135
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -148,7 +148,7 @@ jobs:
148148
steps:
149149
- uses: actions/checkout@v4
150150
- run: ./deploy.sh staging
151-
- uses: versioner-app/versioner-github-action@v1
151+
- uses: versioner-io/versioner-github-action@v1
152152
with:
153153
api_url: ${{ secrets.VERSIONER_API_URL }}
154154
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -162,7 +162,7 @@ jobs:
162162
steps:
163163
- uses: actions/checkout@v4
164164
- run: ./deploy.sh production
165-
- uses: versioner-app/versioner-github-action@v1
165+
- uses: versioner-io/versioner-github-action@v1
166166
with:
167167
api_url: ${{ secrets.VERSIONER_API_URL }}
168168
api_key: ${{ secrets.VERSIONER_API_KEY }}
@@ -224,8 +224,8 @@ Each deployment event creates records in Versioner for:
224224

225225
This GitHub Action is part of the Versioner ecosystem:
226226

227-
- **[Versioner API](https://github.com/versioner-app/versioner-api)** - Core REST API for deployment tracking
228-
- **[Versioner GitHub Action](https://github.com/versioner-app/versioner-github-action)** - This action (for GitHub workflows)
227+
- **[Versioner API](https://github.com/versioner-io/versioner-api)** - Core REST API for deployment tracking
228+
- **[Versioner GitHub Action](https://github.com/versioner-io/versioner-github-action)** - This action (for GitHub workflows)
229229
- **Versioner Python SDK** - Coming soon (for non-GitHub CI/CD systems)
230230
- **Versioner Slack App** - Coming soon (chat-native deployment queries)
231231

@@ -245,7 +245,7 @@ MIT License - see [LICENSE](./LICENSE) for details.
245245
## 🆘 Support
246246

247247
- **Documentation:** [docs.versioner.dev](https://docs.versioner.dev)
248-
- **Issues:** [GitHub Issues](https://github.com/versioner-app/versioner-github-action/issues)
248+
- **Issues:** [GitHub Issues](https://github.com/versioner-io/versioner-github-action/issues)
249249
- **Email:** support@versioner.dev
250250

251251
## 🙏 Contributing

SETUP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,6 @@ npx tsc --noEmit
207207

208208
## Support
209209

210-
- **Issues:** [GitHub Issues](https://github.com/versioner-app/versioner-github-action/issues)
210+
- **Issues:** [GitHub Issues](https://github.com/versioner-io/versioner-github-action/issues)
211211
- **Documentation:** [docs.versioner.dev](https://docs.versioner.dev)
212212
- **Email:** support@versioner.dev

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "git+https://github.com/versioner-app/versioner-github-action.git"
15+
"url": "git+https://github.com/versioner-io/versioner-github-action.git"
1616
},
1717
"keywords": [
1818
"github-action",

0 commit comments

Comments
 (0)