Skip to content

Commit d616f2e

Browse files
authored
Merge branch 'main' into feat/add-kiro-cli-module
2 parents 7cbbfbc + faff2be commit d616f2e

File tree

12 files changed

+232
-8
lines changed

12 files changed

+232
-8
lines changed

.github/workflows/check_registry_site_health.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Run check.sh
1717
run: |

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Detect changed files
1717
uses: dorny/paths-filter@v3
1818
id: filter
@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
steps:
7171
- name: Check out code
72-
uses: actions/checkout@v5
72+
uses: actions/checkout@v6
7373
- name: Install Bun
7474
uses: oven-sh/setup-bun@v2
7575
with:
@@ -93,7 +93,7 @@ jobs:
9393
needs: validate-style
9494
steps:
9595
- name: Check out code
96-
uses: actions/checkout@v5
96+
uses: actions/checkout@v6
9797
- name: Set up Go
9898
uses: actions/setup-go@v6
9999
with:

.github/workflows/deploy-registry.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
- name: Authenticate with Google Cloud
3333
uses: google-github-actions/auth@7c6bc770dae815cd3e89ee6cdf493a5fab2cc093
3434
with:

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: lint
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- uses: actions/setup-go@v6
1919
with:
2020
go-version: stable

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020
persist-credentials: false

.github/workflows/version-bump.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
issues: write
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626
token: ${{ secrets.GITHUB_TOKEN }}

.icons/positron.svg

Lines changed: 12 additions & 0 deletions
Loading
43.8 KB
Loading

registry/cytoshahar/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
display_name: "CytoShahar"
3+
bio: "Data engineer by day, maker by night"
4+
avatar: "./.images/avatar.jpeg"
5+
github: "https://github.com/CytoShahar"
6+
linkedin: "https://www.linkedin.com/in/shaharzrihen" # Optional
7+
status: "community"
8+
---
9+
10+
# Shahar Zrihen
11+
12+
Data engineer by day, maker by night
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
display_name: Positron Desktop
3+
description: Add a one-click button to launch Positron Desktop
4+
icon: ../../../../.icons/positron.svg
5+
verified: true
6+
tags: [ide, positron]
7+
---
8+
9+
# Positron Desktop
10+
11+
Add a button to open any workspace with a single click.
12+
13+
Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder).
14+
15+
```tf
16+
module "positron" {
17+
count = data.coder_workspace.me.start_count
18+
source = "registry.coder.com/cytoshahar/positron/coder"
19+
version = "1.0.0"
20+
agent_id = coder_agent.example.id
21+
}
22+
```
23+
24+
## Examples
25+
26+
### Open in a specific directory
27+
28+
```tf
29+
module "positron" {
30+
count = data.coder_workspace.me.start_count
31+
source = "registry.coder.com/cytoshahar/positron/coder"
32+
version = "1.0.0"
33+
agent_id = coder_agent.example.id
34+
folder = "/home/coder/project"
35+
}
36+
```
37+
38+
Based on the [Coder VS Code Desktop Module](https://github.com/coder/registry/tree/main/registry/coder/modules/vscode-desktop)

0 commit comments

Comments
 (0)